| Index: third_party/WebKit/Source/core/paint/FirstMeaningfulPaintDetector.h
|
| diff --git a/third_party/WebKit/Source/core/paint/FirstMeaningfulPaintDetector.h b/third_party/WebKit/Source/core/paint/FirstMeaningfulPaintDetector.h
|
| index 9bafef2920a248d482ab09dacaf7d6cc53ad3424..fd8eeedc613a74d73267fddb4aa5067da804ee7b 100644
|
| --- a/third_party/WebKit/Source/core/paint/FirstMeaningfulPaintDetector.h
|
| +++ b/third_party/WebKit/Source/core/paint/FirstMeaningfulPaintDetector.h
|
| @@ -45,6 +45,7 @@ class CORE_EXPORT FirstMeaningfulPaintDetector
|
| int contents_height_before_layout,
|
| int contents_height_after_layout,
|
| int visible_height);
|
| + void NotifyInputEvent();
|
| void NotifyPaint();
|
| void CheckNetworkStable();
|
|
|
| @@ -66,6 +67,8 @@ class CORE_EXPORT FirstMeaningfulPaintDetector
|
| void ReportHistograms();
|
|
|
| bool next_paint_is_meaningful_ = false;
|
| + bool had_user_input_ = false;
|
| + bool had_user_input_before_provisional_first_meaningful_paint_ = false;
|
|
|
| Member<PaintTiming> paint_timing_;
|
| double provisional_first_meaningful_paint_ = 0.0;
|
|
|