OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_loadStartTime
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSource.h
81
FontLoadHistograms() :
m_loadStartTime
(0) { }
87
double
m_loadStartTime
;
CSSFontFaceSource.cpp
273
if (!
m_loadStartTime
)
274
m_loadStartTime
= currentTimeMS();
279
if (!
m_loadStartTime
) {
281
m_loadStartTime
= -1; // Do not count this font again.
287
if (
m_loadStartTime
> 0 && font && !font->isLoading()) {
288
int duration = static_cast<int>(currentTimeMS() -
m_loadStartTime
);
290
m_loadStartTime
= -1;
Completed in 115 milliseconds