| Index: third_party/WebKit/Source/core/css/RemoteFontFaceSource.h
|
| diff --git a/third_party/WebKit/Source/core/css/RemoteFontFaceSource.h b/third_party/WebKit/Source/core/css/RemoteFontFaceSource.h
|
| index c0d5c1af78c8d8726fdd9c672bafa76caa5ebf6f..edcfdc5d8acfe05ed01188a4078de5d5d2dc8586 100644
|
| --- a/third_party/WebKit/Source/core/css/RemoteFontFaceSource.h
|
| +++ b/third_party/WebKit/Source/core/css/RemoteFontFaceSource.h
|
| @@ -64,14 +64,14 @@ private:
|
| FontLoadHistograms() : m_loadStartTime(0), m_blankPaintTime(0), m_isLongLimitExceeded(false) { }
|
| void loadStarted();
|
| void fallbackFontPainted(DisplayPeriod);
|
| - void fontLoaded(bool isInterventionTriggered, bool isLoadedFromCache);
|
| + void fontLoaded(bool isInterventionTriggered, bool isLoadedFromNetwork);
|
| void longLimitExceeded(bool isInterventionTriggered);
|
| void recordFallbackTime(const FontResource*);
|
| void recordRemoteFont(const FontResource*);
|
| bool hadBlankText() { return m_blankPaintTime; }
|
| private:
|
| void recordLoadTimeHistogram(const FontResource*, int duration);
|
| - void recordInterventionResult(bool isTriggered, bool isLoadedFromCache);
|
| + void recordInterventionResult(bool isTriggered, bool isLoadedFromNetwork);
|
| double m_loadStartTime;
|
| double m_blankPaintTime;
|
| bool m_isLongLimitExceeded;
|
|
|