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

Side by Side Diff: cc/resources/tile_draw_info.h

Issue 935333002: Update from https://crrev.com/316786 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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/tile.cc ('k') | cc/resources/tile_draw_info.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_TILE_DRAW_INFO_H_ 5 #ifndef CC_RESOURCES_TILE_DRAW_INFO_H_
6 #define CC_RESOURCES_TILE_DRAW_INFO_H_ 6 #define CC_RESOURCES_TILE_DRAW_INFO_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/trace_event/trace_event_argument.h" 9 #include "base/trace_event/trace_event_argument.h"
10 #include "cc/resources/platform_color.h" 10 #include "cc/resources/platform_color.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 return mode_ == RESOURCE_MODE || mode_ == PICTURE_PILE_MODE; 52 return mode_ == RESOURCE_MODE || mode_ == PICTURE_PILE_MODE;
53 } 53 }
54 54
55 inline bool has_resource() const { return !!resource_; } 55 inline bool has_resource() const { return !!resource_; }
56 56
57 void SetSolidColorForTesting(SkColor color) { set_solid_color(color); } 57 void SetSolidColorForTesting(SkColor color) { set_solid_color(color); }
58 void SetResourceForTesting(scoped_ptr<ScopedResource> resource) { 58 void SetResourceForTesting(scoped_ptr<ScopedResource> resource) {
59 resource_ = resource.Pass(); 59 resource_ = resource.Pass();
60 } 60 }
61 61
62 void AsValueInto(base::debug::TracedValue* state) const; 62 void AsValueInto(base::trace_event::TracedValue* state) const;
63 63
64 private: 64 private:
65 friend class Tile; 65 friend class Tile;
66 friend class TileManager; 66 friend class TileManager;
67 67
68 void set_use_resource() { mode_ = RESOURCE_MODE; } 68 void set_use_resource() { mode_ = RESOURCE_MODE; }
69 69
70 void set_solid_color(const SkColor& color) { 70 void set_solid_color(const SkColor& color) {
71 mode_ = SOLID_COLOR_MODE; 71 mode_ = SOLID_COLOR_MODE;
72 solid_color_ = color; 72 solid_color_ = color;
73 } 73 }
74 74
75 void set_rasterize_on_demand() { mode_ = PICTURE_PILE_MODE; } 75 void set_rasterize_on_demand() { mode_ = PICTURE_PILE_MODE; }
76 76
77 Mode mode_; 77 Mode mode_;
78 SkColor solid_color_; 78 SkColor solid_color_;
79 scoped_ptr<ScopedResource> resource_; 79 scoped_ptr<ScopedResource> resource_;
80 }; 80 };
81 81
82 } // namespace cc 82 } // namespace cc
83 83
84 #endif // CC_RESOURCES_TILE_DRAW_INFO_H_ 84 #endif // CC_RESOURCES_TILE_DRAW_INFO_H_
OLDNEW
« no previous file with comments | « cc/resources/tile.cc ('k') | cc/resources/tile_draw_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698