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

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

Issue 142863008: Revert of [#7] Pass gfx structs by const ref (gfx::Size) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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_picture_layer_tiling_client.cc ('k') | cc/test/fake_picture_pile_impl.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_FAKE_PICTURE_PILE_IMPL_H_ 5 #ifndef CC_TEST_FAKE_PICTURE_PILE_IMPL_H_
6 #define CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ 6 #define CC_TEST_FAKE_PICTURE_PILE_IMPL_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "cc/resources/picture_pile_impl.h" 9 #include "cc/resources/picture_pile_impl.h"
10 #include "cc/test/fake_content_layer_client.h" 10 #include "cc/test/fake_content_layer_client.h"
11 11
12 namespace cc { 12 namespace cc {
13 13
14 class FakePicturePileImpl : public PicturePileImpl { 14 class FakePicturePileImpl : public PicturePileImpl {
15 public: 15 public:
16 static scoped_refptr<FakePicturePileImpl> CreateFilledPile( 16 static scoped_refptr<FakePicturePileImpl> CreateFilledPile(
17 const gfx::Size& tile_size, 17 gfx::Size tile_size,
18 const gfx::Size& layer_bounds); 18 gfx::Size layer_bounds);
19 19
20 static scoped_refptr<FakePicturePileImpl> CreateEmptyPile( 20 static scoped_refptr<FakePicturePileImpl> CreateEmptyPile(
21 const gfx::Size& tile_size, 21 gfx::Size tile_size,
22 const gfx::Size& layer_bounds); 22 gfx::Size layer_bounds);
23 23
24 static scoped_refptr<FakePicturePileImpl> CreatePileWithRecordedRegion( 24 static scoped_refptr<FakePicturePileImpl> CreatePileWithRecordedRegion(
25 const gfx::Size& tile_size, 25 gfx::Size tile_size,
26 const gfx::Size& layer_bounds, 26 gfx::Size layer_bounds,
27 const Region& recorded_region); 27 const Region& recorded_region);
28 28
29 static scoped_refptr<FakePicturePileImpl> CreatePile(); 29 static scoped_refptr<FakePicturePileImpl> CreatePile();
30 30
31 TilingData& tiling() { return tiling_; } 31 TilingData& tiling() { return tiling_; }
32 32
33 void AddRecordingAt(int x, int y); 33 void AddRecordingAt(int x, int y);
34 void RemoveRecordingAt(int x, int y); 34 void RemoveRecordingAt(int x, int y);
35 void RerecordPile(); 35 void RerecordPile();
36 36
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 FakePicturePileImpl(); 72 FakePicturePileImpl();
73 virtual ~FakePicturePileImpl(); 73 virtual ~FakePicturePileImpl();
74 74
75 FakeContentLayerClient client_; 75 FakeContentLayerClient client_;
76 SkPaint default_paint_; 76 SkPaint default_paint_;
77 }; 77 };
78 78
79 } // namespace cc 79 } // namespace cc
80 80
81 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ 81 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_
OLDNEW
« no previous file with comments | « cc/test/fake_picture_layer_tiling_client.cc ('k') | cc/test/fake_picture_pile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698