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

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

Issue 286953008: cc: Allow DeferredInitialize to use DelegatingRenderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: OutputSurface::ReleaseContextProvider Created 6 years, 7 months 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 | Annotate | Revision Log
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/test/fake_output_surface_client.h" 6 #include "cc/test/fake_output_surface_client.h"
6 7
7 namespace cc { 8 namespace cc {
8 9
9 void FakeOutputSurfaceClient::DeferredInitialize() { 10 void FakeOutputSurfaceClient::DeferredInitialize() {
10 deferred_initialize_called_ = true; 11 deferred_initialize_called_ = true;
11 } 12 }
12 13
14 void FakeOutputSurfaceClient::ReleaseGL() {
15 if (output_surface_)
16 output_surface_->ReleaseContextProvider();
danakj 2014/05/20 23:09:11 Can you mention in a comment on the ReleaseGL meth
boliu 2014/05/20 23:31:38 Done. Put the comment in the client definition.
17 }
18
13 void FakeOutputSurfaceClient::BeginFrame(const BeginFrameArgs& args) { 19 void FakeOutputSurfaceClient::BeginFrame(const BeginFrameArgs& args) {
14 begin_frame_count_++; 20 begin_frame_count_++;
15 } 21 }
16 22
17 void FakeOutputSurfaceClient::DidLoseOutputSurface() { 23 void FakeOutputSurfaceClient::DidLoseOutputSurface() {
18 did_lose_output_surface_called_ = true; 24 did_lose_output_surface_called_ = true;
19 } 25 }
20 26
21 void FakeOutputSurfaceClient::SetMemoryPolicy( 27 void FakeOutputSurfaceClient::SetMemoryPolicy(
22 const ManagedMemoryPolicy& policy) { 28 const ManagedMemoryPolicy& policy) {
23 memory_policy_ = policy; 29 memory_policy_ = policy;
24 } 30 }
25 31
26 } // namespace cc 32 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698