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

Unified Diff: cc/quads/render_pass_draw_quad.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/quads/render_pass.cc ('k') | cc/quads/render_pass_draw_quad.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/render_pass_draw_quad.h
diff --git a/cc/quads/render_pass_draw_quad.h b/cc/quads/render_pass_draw_quad.h
index 9cc4ba3d16ba6e6fdd1c9f6ce73424021fa1ee9a..40540d2c4f60b61b8f85c145bb742bb758f711bd 100644
--- a/cc/quads/render_pass_draw_quad.h
+++ b/cc/quads/render_pass_draw_quad.h
@@ -10,7 +10,7 @@
#include "cc/base/cc_export.h"
#include "cc/output/filter_operations.h"
#include "cc/quads/draw_quad.h"
-#include "cc/quads/render_pass.h"
+#include "cc/quads/render_pass_id.h"
#include "cc/resources/resource_provider.h"
namespace cc {
@@ -23,7 +23,7 @@ class CC_EXPORT RenderPassDrawQuad : public DrawQuad {
void SetNew(const SharedQuadState* shared_quad_state,
const gfx::Rect& rect,
const gfx::Rect& visible_rect,
- RenderPass::Id render_pass_id,
+ RenderPassId render_pass_id,
ResourceProvider::ResourceId mask_resource_id,
const gfx::RectF& mask_uv_rect,
const FilterOperations& filters,
@@ -35,14 +35,14 @@ class CC_EXPORT RenderPassDrawQuad : public DrawQuad {
const gfx::Rect& opaque_rect,
const gfx::Rect& visible_rect,
bool needs_blending,
- RenderPass::Id render_pass_id,
+ RenderPassId render_pass_id,
ResourceProvider::ResourceId mask_resource_id,
const gfx::RectF& mask_uv_rect,
const FilterOperations& filters,
const gfx::Vector2dF& filters_scale,
const FilterOperations& background_filters);
- RenderPass::Id render_pass_id;
+ RenderPassId render_pass_id;
ResourceProvider::ResourceId mask_resource_id;
gfx::RectF mask_uv_rect;
« no previous file with comments | « cc/quads/render_pass.cc ('k') | cc/quads/render_pass_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698