 Chromium Code Reviews
 Chromium Code Reviews Issue 1246363002:
  Avoid updating compositor animations in hitTest path  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1246363002:
  Avoid updating compositor animations in hitTest path  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/core/frame/FrameView.cpp | 
| diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp | 
| index feffce69b9fc3057ce92d0ef13c11897d32aa012..cbbc6637caac613504dffbad5c4498ec410acc5e 100644 | 
| --- a/Source/core/frame/FrameView.cpp | 
| +++ b/Source/core/frame/FrameView.cpp | 
| @@ -2427,12 +2427,6 @@ void FrameView::updateAllLifecyclePhases() | 
| frame().localFrameRoot()->view()->updateLifecyclePhasesInternal(AllPhases); | 
| } | 
| -// TODO(chrishtr): add a scrolling update lifecycle phase. | 
| -void FrameView::updateLifecycleToCompositingCleanPlusScrolling() | 
| -{ | 
| - frame().localFrameRoot()->view()->updateLifecyclePhasesInternal(OnlyUpToCompositingCleanPlusScrolling); | 
| 
esprehn
2015/08/25 07:37:53
This leaves the OnlyUpToCompositingCleanPlusScroll
 | 
| -} | 
| - | 
| void FrameView::updateLifecyclePhasesInternal(LifeCycleUpdateOption phases) | 
| { | 
| // This must be called from the root frame, since it recurses down, not up. |