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

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

Issue 23171014: Fix UpdateTilePriorities viewport in Android WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to 221292 Created 7 years, 3 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.cc ('k') | cc/test/pixel_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 #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_frame_count_(0), 16 : begin_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 discard_backbuffer_when_not_visible_(false) {} 21 discard_backbuffer_when_not_visible_(false) {}
22 22
23 virtual bool DeferredInitialize( 23 virtual bool DeferredInitialize(
24 scoped_refptr<ContextProvider> offscreen_context_provider) OVERRIDE; 24 scoped_refptr<ContextProvider> offscreen_context_provider) OVERRIDE;
25 virtual void ReleaseGL() OVERRIDE {} 25 virtual void ReleaseGL() OVERRIDE {}
26 virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) OVERRIDE {} 26 virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) OVERRIDE {}
27 virtual void BeginFrame(const BeginFrameArgs& args) OVERRIDE; 27 virtual void BeginFrame(const BeginFrameArgs& args) OVERRIDE;
28 virtual void OnSwapBuffersComplete(const CompositorFrameAck* ack) OVERRIDE {} 28 virtual void OnSwapBuffersComplete(const CompositorFrameAck* ack) OVERRIDE {}
29 virtual void DidLoseOutputSurface() OVERRIDE; 29 virtual void DidLoseOutputSurface() OVERRIDE;
30 virtual void SetExternalDrawConstraints(const gfx::Transform& transform, 30 virtual void SetExternalDrawConstraints(
31 gfx::Rect viewport) OVERRIDE {} 31 const gfx::Transform& transform,
32 gfx::Rect viewport,
33 gfx::Rect clip,
34 bool valid_for_tile_management) OVERRIDE {}
32 virtual void SetExternalStencilTest(bool enable) OVERRIDE {} 35 virtual void SetExternalStencilTest(bool enable) OVERRIDE {}
33 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) OVERRIDE; 36 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) OVERRIDE;
34 virtual void SetDiscardBackBufferWhenNotVisible(bool discard) OVERRIDE; 37 virtual void SetDiscardBackBufferWhenNotVisible(bool discard) OVERRIDE;
35 virtual void SetTreeActivationCallback(const base::Closure&) OVERRIDE {} 38 virtual void SetTreeActivationCallback(const base::Closure&) OVERRIDE {}
36 39
37 int begin_frame_count() { 40 int begin_frame_count() {
38 return begin_frame_count_; 41 return begin_frame_count_;
39 } 42 }
40 43
41 void set_deferred_initialize_result(bool result) { 44 void set_deferred_initialize_result(bool result) {
(...skipping 19 matching lines...) Expand all
61 bool deferred_initialize_result_; 64 bool deferred_initialize_result_;
62 bool deferred_initialize_called_; 65 bool deferred_initialize_called_;
63 bool did_lose_output_surface_called_; 66 bool did_lose_output_surface_called_;
64 ManagedMemoryPolicy memory_policy_; 67 ManagedMemoryPolicy memory_policy_;
65 bool discard_backbuffer_when_not_visible_; 68 bool discard_backbuffer_when_not_visible_;
66 }; 69 };
67 70
68 } // namespace cc 71 } // namespace cc
69 72
70 #endif // CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_ 73 #endif // CC_TEST_FAKE_OUTPUT_SURFACE_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.cc ('k') | cc/test/pixel_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698