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

Side by Side Diff: cc/test/test_context_support.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/solid_color_content_layer_client.cc ('k') | cc/test/test_context_support.cc » ('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_TEST_CONTEXT_SUPPORT_H_ 5 #ifndef CC_TEST_TEST_CONTEXT_SUPPORT_H_
6 #define CC_TEST_TEST_CONTEXT_SUPPORT_H_ 6 #define CC_TEST_TEST_CONTEXT_SUPPORT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "gpu/command_buffer/client/context_support.h" 11 #include "gpu/command_buffer/client/context_support.h"
12 12
13 namespace cc { 13 namespace cc {
14 14
15 class TestContextSupport : public gpu::ContextSupport { 15 class TestContextSupport : public gpu::ContextSupport {
16 public: 16 public:
17 TestContextSupport(); 17 TestContextSupport();
18 virtual ~TestContextSupport(); 18 virtual ~TestContextSupport();
19 19
20 // gpu::ContextSupport implementation. 20 // gpu::ContextSupport implementation.
21 virtual void SignalSyncPoint(uint32 sync_point, 21 virtual void SignalSyncPoint(uint32 sync_point,
22 const base::Closure& callback) OVERRIDE; 22 const base::Closure& callback) OVERRIDE;
23 virtual void SignalQuery(uint32 query, 23 virtual void SignalQuery(uint32 query,
24 const base::Closure& callback) OVERRIDE; 24 const base::Closure& callback) OVERRIDE;
25 virtual void SetSurfaceVisible(bool visible) OVERRIDE; 25 virtual void SetSurfaceVisible(bool visible) OVERRIDE;
26 virtual void SendManagedMemoryStats(const gpu::ManagedMemoryStats& stats) 26 virtual void SendManagedMemoryStats(const gpu::ManagedMemoryStats& stats)
27 OVERRIDE; 27 OVERRIDE;
28 virtual void Swap() OVERRIDE; 28 virtual void Swap() OVERRIDE;
29 virtual void PartialSwapBuffers(gfx::Rect sub_buffer) OVERRIDE; 29 virtual void PartialSwapBuffers(const gfx::Rect& sub_buffer) OVERRIDE;
30 virtual void SetSwapBuffersCompleteCallback( 30 virtual void SetSwapBuffersCompleteCallback(
31 const base::Closure& callback) OVERRIDE; 31 const base::Closure& callback) OVERRIDE;
32 32
33 void CallAllSyncPointCallbacks(); 33 void CallAllSyncPointCallbacks();
34 34
35 typedef base::Callback<void(bool visible)> SurfaceVisibleCallback; 35 typedef base::Callback<void(bool visible)> SurfaceVisibleCallback;
36 void SetSurfaceVisibleCallback( 36 void SetSurfaceVisibleCallback(
37 const SurfaceVisibleCallback& set_visible_callback); 37 const SurfaceVisibleCallback& set_visible_callback);
38 38
39 enum SwapType { 39 enum SwapType {
(...skipping 19 matching lines...) Expand all
59 gfx::Rect last_partial_swap_rect_; 59 gfx::Rect last_partial_swap_rect_;
60 60
61 base::WeakPtrFactory<TestContextSupport> weak_ptr_factory_; 61 base::WeakPtrFactory<TestContextSupport> weak_ptr_factory_;
62 62
63 DISALLOW_COPY_AND_ASSIGN(TestContextSupport); 63 DISALLOW_COPY_AND_ASSIGN(TestContextSupport);
64 }; 64 };
65 65
66 } // namespace cc 66 } // namespace cc
67 67
68 #endif // CC_TEST_TEST_CONTEXT_SUPPORT_H_ 68 #endif // CC_TEST_TEST_CONTEXT_SUPPORT_H_
OLDNEW
« no previous file with comments | « cc/test/solid_color_content_layer_client.cc ('k') | cc/test/test_context_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698