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

Side by Side Diff: cc/resources/picture_pile_base.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/resources/picture_layer_tiling_unittest.cc ('k') | cc/resources/picture_pile_base.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_RESOURCES_PICTURE_PILE_BASE_H_ 5 #ifndef CC_RESOURCES_PICTURE_PILE_BASE_H_
6 #define CC_RESOURCES_PICTURE_PILE_BASE_H_ 6 #define CC_RESOURCES_PICTURE_PILE_BASE_H_
7 7
8 #include <bitset> 8 #include <bitset>
9 #include <list> 9 #include <list>
10 #include <utility> 10 #include <utility>
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 23
24 namespace cc { 24 namespace cc {
25 25
26 class CC_EXPORT PicturePileBase : public base::RefCounted<PicturePileBase> { 26 class CC_EXPORT PicturePileBase : public base::RefCounted<PicturePileBase> {
27 public: 27 public:
28 PicturePileBase(); 28 PicturePileBase();
29 explicit PicturePileBase(const PicturePileBase* other); 29 explicit PicturePileBase(const PicturePileBase* other);
30 PicturePileBase(const PicturePileBase* other, unsigned thread_index); 30 PicturePileBase(const PicturePileBase* other, unsigned thread_index);
31 31
32 void Resize(const gfx::Size& size); 32 void Resize(gfx::Size size);
33 gfx::Size size() const { return tiling_.total_size(); } 33 gfx::Size size() const { return tiling_.total_size(); }
34 void SetMinContentsScale(float min_contents_scale); 34 void SetMinContentsScale(float min_contents_scale);
35 35
36 void UpdateRecordedRegion(); 36 void UpdateRecordedRegion();
37 const Region& recorded_region() const { return recorded_region_; } 37 const Region& recorded_region() const { return recorded_region_; }
38 38
39 int num_tiles_x() const { return tiling_.num_tiles_x(); } 39 int num_tiles_x() const { return tiling_.num_tiles_x(); }
40 int num_tiles_y() const { return tiling_.num_tiles_y(); } 40 int num_tiles_y() const { return tiling_.num_tiles_y(); }
41 gfx::Rect tile_bounds(int x, int y) const { return tiling_.TileBounds(x, y); } 41 gfx::Rect tile_bounds(int x, int y) const { return tiling_.TileBounds(x, y); }
42 bool HasRecordingAt(int x, int y); 42 bool HasRecordingAt(int x, int y);
43 bool CanRaster(float contents_scale, const gfx::Rect& content_rect); 43 bool CanRaster(float contents_scale, const gfx::Rect& content_rect);
44 44
45 static void ComputeTileGridInfo(const gfx::Size& tile_grid_size, 45 static void ComputeTileGridInfo(gfx::Size tile_grid_size,
46 SkTileGridPicture::TileGridInfo* info); 46 SkTileGridPicture::TileGridInfo* info);
47 47
48 void SetTileGridSize(const gfx::Size& tile_grid_size); 48 void SetTileGridSize(gfx::Size tile_grid_size);
49 TilingData& tiling() { return tiling_; } 49 TilingData& tiling() { return tiling_; }
50 50
51 scoped_ptr<base::Value> AsValue() const; 51 scoped_ptr<base::Value> AsValue() const;
52 52
53 protected: 53 protected:
54 class CC_EXPORT PictureInfo { 54 class CC_EXPORT PictureInfo {
55 public: 55 public:
56 enum { 56 enum {
57 INVALIDATION_FRAMES_TRACKED = 32 57 INVALIDATION_FRAMES_TRACKED = 32
58 }; 58 };
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 private: 110 private:
111 void SetBufferPixels(int buffer_pixels); 111 void SetBufferPixels(int buffer_pixels);
112 112
113 friend class base::RefCounted<PicturePileBase>; 113 friend class base::RefCounted<PicturePileBase>;
114 DISALLOW_COPY_AND_ASSIGN(PicturePileBase); 114 DISALLOW_COPY_AND_ASSIGN(PicturePileBase);
115 }; 115 };
116 116
117 } // namespace cc 117 } // namespace cc
118 118
119 #endif // CC_RESOURCES_PICTURE_PILE_BASE_H_ 119 #endif // CC_RESOURCES_PICTURE_PILE_BASE_H_
OLDNEW
« no previous file with comments | « cc/resources/picture_layer_tiling_unittest.cc ('k') | cc/resources/picture_pile_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698