| Index: cc/trees/layer_tree_host_impl.cc
|
| diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc
|
| index 072e8e7efbf2d6ae30186f8514e2d47b790961b8..579bff5cde41bcc5e012de0f6d257c5a3f4fce99 100644
|
| --- a/cc/trees/layer_tree_host_impl.cc
|
| +++ b/cc/trees/layer_tree_host_impl.cc
|
| @@ -1274,8 +1274,8 @@ void LayerTreeHostImpl::SetNeedsRedrawRect(const gfx::Rect& damage_rect) {
|
| client_->SetNeedsRedrawRectOnImplThread(damage_rect);
|
| }
|
|
|
| -void LayerTreeHostImpl::BeginImplFrame(const BeginFrameArgs& args) {
|
| - client_->BeginImplFrame(args);
|
| +void LayerTreeHostImpl::BeginFrame(const BeginFrameArgs& args) {
|
| + client_->BeginFrame(args);
|
| }
|
|
|
| void LayerTreeHostImpl::DidSwapBuffers() {
|
| @@ -1469,9 +1469,9 @@ bool LayerTreeHostImpl::SwapBuffers(const LayerTreeHostImpl::FrameData& frame) {
|
| return true;
|
| }
|
|
|
| -void LayerTreeHostImpl::SetNeedsBeginImplFrame(bool enable) {
|
| +void LayerTreeHostImpl::SetNeedsBeginFrame(bool enable) {
|
| if (output_surface_)
|
| - output_surface_->SetNeedsBeginImplFrame(enable);
|
| + output_surface_->SetNeedsBeginFrame(enable);
|
| }
|
|
|
| gfx::SizeF LayerTreeHostImpl::ComputeInnerViewportContainerSize() const {
|
| @@ -1832,14 +1832,14 @@ bool LayerTreeHostImpl::InitializeRenderer(
|
| GetRendererCapabilities().allow_rasterize_on_demand);
|
| }
|
|
|
| - // Setup BeginImplFrameEmulation if it's not supported natively
|
| + // Setup BeginFrameEmulation if it's not supported natively
|
| if (!settings_.begin_impl_frame_scheduling_enabled) {
|
| const base::TimeDelta display_refresh_interval =
|
| base::TimeDelta::FromMicroseconds(
|
| base::Time::kMicrosecondsPerSecond /
|
| settings_.refresh_rate);
|
|
|
| - output_surface->InitializeBeginImplFrameEmulation(
|
| + output_surface->InitializeBeginFrameEmulation(
|
| proxy_->ImplThreadTaskRunner(),
|
| settings_.throttle_frame_production,
|
| display_refresh_interval);
|
|
|