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

Unified Diff: cc/quads/render_pass_draw_quad.cc

Issue 801293003: Fix a trace value type in RenderPassDrawQuad. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/render_pass_draw_quad.cc
diff --git a/cc/quads/render_pass_draw_quad.cc b/cc/quads/render_pass_draw_quad.cc
index 88f608d4ce8a3d9940f9b66712ab249637105143..d3aeb05c62e62b36175aff3dc5465c1984ee9b5e 100644
--- a/cc/quads/render_pass_draw_quad.cc
+++ b/cc/quads/render_pass_draw_quad.cc
@@ -99,9 +99,9 @@ void RenderPassDrawQuad::ExtendValue(base::debug::TracedValue* value) const {
TracedValue::SetIDRef(render_pass_id.AsTracingId(), value, "render_pass_id");
value->SetInteger("mask_resource_id", mask_resource_id);
- value->BeginArray("mask_texture_size");
+ value->BeginDictionary("mask_texture_size");
danakj 2015/01/12 18:03:22 Oof, this is kinda meh. We can surely make a bette
JungJik 2015/01/13 01:04:42 thanks for the review. I understand your intention
MathUtil::AddToTracedValue(mask_texture_size, value);
- value->EndArray();
+ value->EndDictionary();
value->BeginArray("mask_uv_scale");
MathUtil::AddToTracedValue(mask_uv_scale, value);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698