summaryrefslogtreecommitdiffstats
path: root/cc/test/fake_output_surface_client.cc
diff options
context:
space:
mode:
authordominikg@chromium.org <dominikg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-23 17:04:50 +0000
committerdominikg@chromium.org <dominikg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-23 17:04:50 +0000
commitdaea3d424f865ae7fc5720dea7b3c9565952a968 (patch)
tree0c6bf0ade3676ee7b735fbc0aa5e1872cef9475f /cc/test/fake_output_surface_client.cc
parentf54f8ce7166114c58c6ecb92b6cc2a0f8bac0a2b (diff)
downloadchromium_src-daea3d424f865ae7fc5720dea7b3c9565952a968.zip
chromium_src-daea3d424f865ae7fc5720dea7b3c9565952a968.tar.gz
chromium_src-daea3d424f865ae7fc5720dea7b3c9565952a968.tar.bz2
Rename BeginFrame to BeginMainFrame and BeginImplFrame (part 3).
Third patch in a series to rename BeginFrame. This patch focuses on cc::ThreadProxy, cc::LayerTreeHost, cc::LayerTreeHostImpl, cc::OutputSurface and it's related (sub)classes. In the scheduler, the term 'BeginFrame' is used for both the main thread and the impl thread. This can cause confusion if it's not obvious which one is being refered to. To clarify this, we rename BeginFrame to BeginMainFrame and BeginImplFrame, respectively. BUG=261765 Review URL: https://codereview.chromium.org/35023002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230453 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_output_surface_client.cc')
-rw-r--r--cc/test/fake_output_surface_client.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/test/fake_output_surface_client.cc b/cc/test/fake_output_surface_client.cc
index 2ce6cf0..8417974 100644
--- a/cc/test/fake_output_surface_client.cc
+++ b/cc/test/fake_output_surface_client.cc
@@ -12,8 +12,8 @@ bool FakeOutputSurfaceClient::DeferredInitialize(
return deferred_initialize_result_;
}
-void FakeOutputSurfaceClient::BeginFrame(const BeginFrameArgs& args) {
- begin_frame_count_++;
+void FakeOutputSurfaceClient::BeginImplFrame(const BeginFrameArgs& args) {
+ begin_impl_frame_count_++;
}
void FakeOutputSurfaceClient::DidLoseOutputSurface() {