Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Side by Side Diff: cc/test/fake_output_surface_client.cc

Issue 619843002: cc: Make separate interface for BeginFrame ipc from OutputSurface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/test/fake_output_surface_client.h ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/output_surface.h" 5 #include "cc/output/output_surface.h"
6 #include "cc/test/fake_output_surface_client.h" 6 #include "cc/test/fake_output_surface_client.h"
7 7
8 namespace cc { 8 namespace cc {
9 9
10 void FakeOutputSurfaceClient::DeferredInitialize() { 10 void FakeOutputSurfaceClient::DeferredInitialize() {
11 deferred_initialize_called_ = true; 11 deferred_initialize_called_ = true;
12 } 12 }
13 13
14 void FakeOutputSurfaceClient::ReleaseGL() { 14 void FakeOutputSurfaceClient::ReleaseGL() {
15 if (output_surface_) 15 if (output_surface_)
16 output_surface_->ReleaseContextProvider(); 16 output_surface_->ReleaseContextProvider();
17 } 17 }
18 18
19 void FakeOutputSurfaceClient::BeginFrame(const BeginFrameArgs& args) {
20 begin_frame_count_++;
21 }
22
23 void FakeOutputSurfaceClient::DidSwapBuffers() { 19 void FakeOutputSurfaceClient::DidSwapBuffers() {
24 swap_count_++; 20 swap_count_++;
25 } 21 }
26 22
27 void FakeOutputSurfaceClient::DidLoseOutputSurface() { 23 void FakeOutputSurfaceClient::DidLoseOutputSurface() {
28 did_lose_output_surface_called_ = true; 24 did_lose_output_surface_called_ = true;
29 } 25 }
30 26
31 void FakeOutputSurfaceClient::SetMemoryPolicy( 27 void FakeOutputSurfaceClient::SetMemoryPolicy(
32 const ManagedMemoryPolicy& policy) { 28 const ManagedMemoryPolicy& policy) {
33 memory_policy_ = policy; 29 memory_policy_ = policy;
34 } 30 }
35 31
36 } // namespace cc 32 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_output_surface_client.h ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698