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

Unified Diff: cc/layers/append_quads_data.h

Issue 404563005: Make RenderPass::Id an isolated class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more case in mojo Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/cc.gyp ('k') | cc/layers/delegated_frame_provider_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/append_quads_data.h
diff --git a/cc/layers/append_quads_data.h b/cc/layers/append_quads_data.h
index 6326bbb8ab64e59feb15a4108116ccb274431f2e..ffe0dd9ba74831334ab87b393e84e67015d362a0 100644
--- a/cc/layers/append_quads_data.h
+++ b/cc/layers/append_quads_data.h
@@ -6,7 +6,7 @@
#define CC_LAYERS_APPEND_QUADS_DATA_H_
#include "base/basictypes.h"
-#include "cc/quads/render_pass.h"
+#include "cc/quads/render_pass_id.h"
namespace cc {
@@ -18,7 +18,7 @@ struct AppendQuadsData {
approximated_visible_content_area(0),
render_pass_id(0, 0) {}
- explicit AppendQuadsData(RenderPass::Id render_pass_id)
+ explicit AppendQuadsData(RenderPassId render_pass_id)
: num_incomplete_tiles(0),
num_missing_tiles(0),
visible_content_area(0),
@@ -34,7 +34,7 @@ struct AppendQuadsData {
// Set by the layer appending quads.
int64 approximated_visible_content_area;
// Given to the layer appending quads.
- const RenderPass::Id render_pass_id;
+ const RenderPassId render_pass_id;
};
} // namespace cc
« no previous file with comments | « cc/cc.gyp ('k') | cc/layers/delegated_frame_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698