| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index 10477dc2af297d281ab1eefeac22c6a87fe16893..694a8cb860030b0ad53d1b8662c634dd1764b261 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -63,7 +63,7 @@ class LayerTreeHostImplClient {
|
| virtual void DidLoseOutputSurfaceOnImplThread() = 0;
|
| virtual void DidSwapBuffersOnImplThread() = 0;
|
| virtual void OnSwapBuffersCompleteOnImplThread() = 0;
|
| - virtual void BeginImplFrame(const BeginFrameArgs& args) = 0;
|
| + virtual void BeginFrame(const BeginFrameArgs& args) = 0;
|
| virtual void OnCanDrawStateChanged(bool can_draw) = 0;
|
| virtual void NotifyReadyToActivate() = 0;
|
| // Please call these 2 functions through
|
| @@ -225,7 +225,7 @@ class CC_EXPORT LayerTreeHostImpl
|
| scoped_refptr<ContextProvider> offscreen_context_provider) OVERRIDE;
|
| virtual void ReleaseGL() OVERRIDE;
|
| virtual void SetNeedsRedrawRect(const gfx::Rect& rect) OVERRIDE;
|
| - virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
|
| + virtual void BeginFrame(const BeginFrameArgs& args) OVERRIDE;
|
| virtual void SetExternalDrawConstraints(
|
| const gfx::Transform& transform,
|
| const gfx::Rect& viewport,
|
| @@ -264,7 +264,7 @@ class CC_EXPORT LayerTreeHostImpl
|
| const RendererCapabilitiesImpl& GetRendererCapabilities() const;
|
|
|
| virtual bool SwapBuffers(const FrameData& frame);
|
| - void SetNeedsBeginImplFrame(bool enable);
|
| + void SetNeedsBeginFrame(bool enable);
|
| void DidModifyTilePriorities();
|
|
|
| void Readback(void* pixels, const gfx::Rect& rect_in_device_viewport);
|
|
|