| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index 59019c5a7ba6e0ad9aa95cbdf617bf8286436528..5702eafae6c69e1b7db3a7ed67b328e9b09cbff4 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -237,6 +237,9 @@ public:
|
| // (e.g., based on visibility) and will not end up being PaintInvalidationClean.
|
| void updateAllLifecyclePhases();
|
|
|
| + // Everything except paint (the last phase).
|
| + void updateAllLifecyclePhasesExceptPaint();
|
| +
|
| // Computes the style, layout and compositing lifecycle stages if needed. After calling this method, all frames will be in a lifecycle
|
| // state >= CompositingClean, and scrolling has been updated (unless throttling is allowed).
|
| void updateLifecycleToCompositingCleanPlusScrolling();
|
| @@ -638,6 +641,7 @@ private:
|
| enum LifeCycleUpdateOption {
|
| OnlyUpToLayoutClean,
|
| OnlyUpToCompositingCleanPlusScrolling,
|
| + AllPhasesExceptPaint,
|
| AllPhases,
|
| };
|
|
|
|
|