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

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

Issue 93663004: [#2] Pass gfx structs by const ref (gfx::Rect, gfx::RectF) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT, fix builds on non-linux platforms! Created 6 years, 11 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
« no previous file with comments | « cc/test/fake_layer_tree_host_impl_client.h ('k') | cc/test/fake_picture_layer_tiling_client.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 #ifndef CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_ 5 #ifndef CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_
6 #define CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_ 6 #define CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_
7 7
8 #include "cc/output/managed_memory_policy.h" 8 #include "cc/output/managed_memory_policy.h"
9 #include "cc/output/output_surface_client.h" 9 #include "cc/output/output_surface_client.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 class FakeOutputSurfaceClient : public OutputSurfaceClient { 13 class FakeOutputSurfaceClient : public OutputSurfaceClient {
14 public: 14 public:
15 FakeOutputSurfaceClient() 15 FakeOutputSurfaceClient()
16 : begin_impl_frame_count_(0), 16 : begin_impl_frame_count_(0),
17 deferred_initialize_result_(true), 17 deferred_initialize_result_(true),
18 deferred_initialize_called_(false), 18 deferred_initialize_called_(false),
19 did_lose_output_surface_called_(false), 19 did_lose_output_surface_called_(false),
20 memory_policy_(0) {} 20 memory_policy_(0) {}
21 21
22 virtual bool DeferredInitialize( 22 virtual bool DeferredInitialize(
23 scoped_refptr<ContextProvider> offscreen_context_provider) OVERRIDE; 23 scoped_refptr<ContextProvider> offscreen_context_provider) OVERRIDE;
24 virtual void ReleaseGL() OVERRIDE {} 24 virtual void ReleaseGL() OVERRIDE {}
25 virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) OVERRIDE {} 25 virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) OVERRIDE {}
26 virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE; 26 virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
27 virtual void DidSwapBuffers() OVERRIDE {} 27 virtual void DidSwapBuffers() OVERRIDE {}
28 virtual void OnSwapBuffersComplete() OVERRIDE {} 28 virtual void OnSwapBuffersComplete() OVERRIDE {}
29 virtual void ReclaimResources(const CompositorFrameAck* ack) OVERRIDE {} 29 virtual void ReclaimResources(const CompositorFrameAck* ack) OVERRIDE {}
30 virtual void DidLoseOutputSurface() OVERRIDE; 30 virtual void DidLoseOutputSurface() OVERRIDE;
31 virtual void SetExternalDrawConstraints( 31 virtual void SetExternalDrawConstraints(
32 const gfx::Transform& transform, 32 const gfx::Transform& transform,
33 gfx::Rect viewport, 33 const gfx::Rect& viewport,
34 gfx::Rect clip, 34 const gfx::Rect& clip,
35 bool valid_for_tile_management) OVERRIDE {} 35 bool valid_for_tile_management) OVERRIDE {}
36 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) OVERRIDE; 36 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) OVERRIDE;
37 virtual void SetTreeActivationCallback(const base::Closure&) OVERRIDE {} 37 virtual void SetTreeActivationCallback(const base::Closure&) OVERRIDE {}
38 38
39 int begin_impl_frame_count() { 39 int begin_impl_frame_count() {
40 return begin_impl_frame_count_; 40 return begin_impl_frame_count_;
41 } 41 }
42 42
43 void set_deferred_initialize_result(bool result) { 43 void set_deferred_initialize_result(bool result) {
44 deferred_initialize_result_ = result; 44 deferred_initialize_result_ = result;
(...skipping 13 matching lines...) Expand all
58 int begin_impl_frame_count_; 58 int begin_impl_frame_count_;
59 bool deferred_initialize_result_; 59 bool deferred_initialize_result_;
60 bool deferred_initialize_called_; 60 bool deferred_initialize_called_;
61 bool did_lose_output_surface_called_; 61 bool did_lose_output_surface_called_;
62 ManagedMemoryPolicy memory_policy_; 62 ManagedMemoryPolicy memory_policy_;
63 }; 63 };
64 64
65 } // namespace cc 65 } // namespace cc
66 66
67 #endif // CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_ 67 #endif // CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/test/fake_layer_tree_host_impl_client.h ('k') | cc/test/fake_picture_layer_tiling_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698