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

Unified Diff: cc/quads/draw_quad_unittest.cc

Issue 12676029: cc: Fix capitalization style in chromified files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/draw_quad.h ('k') | cc/quads/render_pass.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/draw_quad_unittest.cc
diff --git a/cc/quads/draw_quad_unittest.cc b/cc/quads/draw_quad_unittest.cc
index 496602cbafa09cfa4ea9987f0bb055d899f4c0e2..281da3b5aa39e332060055670d5bf117ffdb17fb 100644
--- a/cc/quads/draw_quad_unittest.cc
+++ b/cc/quads/draw_quad_unittest.cc
@@ -192,22 +192,22 @@ void CompareDrawQuad(DrawQuad* quad,
} \
SETUP_AND_COPY_QUAD_ALL(Type, quad_all);
-#define CREATE_QUAD_5_NEW_1(Type, a, b, c, d, e, copyA) \
+#define CREATE_QUAD_5_NEW_1(Type, a, b, c, d, e, copy_a) \
scoped_ptr<Type> quad_new(Type::Create()); \
{ \
QUAD_DATA \
quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e); \
} \
- SETUP_AND_COPY_QUAD_NEW_1(Type, quad_new, copyA);
+ SETUP_AND_COPY_QUAD_NEW_1(Type, quad_new, copy_a);
-#define CREATE_QUAD_5_ALL_1(Type, a, b, c, d, e, copyA) \
+#define CREATE_QUAD_5_ALL_1(Type, a, b, c, d, e, copy_a) \
scoped_ptr<Type> quad_all(Type::Create()); \
{ \
QUAD_DATA \
quad_all->SetAll(shared_state.get(), quad_rect, quad_opaque_rect, \
quad_visible_rect, needs_blending, a, b, c, d, e); \
} \
- SETUP_AND_COPY_QUAD_ALL_1(Type, quad_all, copyA);
+ SETUP_AND_COPY_QUAD_ALL_1(Type, quad_all, copy_a);
#define CREATE_QUAD_6_NEW(Type, a, b, c, d, e, f) \
scoped_ptr<Type> quad_new(Type::Create()); \
@@ -262,15 +262,15 @@ void CompareDrawQuad(DrawQuad* quad,
} \
SETUP_AND_COPY_QUAD_ALL(Type, quad_all);
-#define CREATE_QUAD_8_NEW_1(Type, a, b, c, d, e, f, g, h, copyA) \
+#define CREATE_QUAD_8_NEW_1(Type, a, b, c, d, e, f, g, h, copy_a) \
scoped_ptr<Type> quad_new(Type::Create()); \
{ \
QUAD_DATA \
quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g, h); \
} \
- SETUP_AND_COPY_QUAD_NEW_1(Type, quad_new, copyA);
+ SETUP_AND_COPY_QUAD_NEW_1(Type, quad_new, copy_a);
-#define CREATE_QUAD_8_ALL_1(Type, a, b, c, d, e, f, g, h, copyA) \
+#define CREATE_QUAD_8_ALL_1(Type, a, b, c, d, e, f, g, h, copy_a) \
scoped_ptr<Type> quad_all(Type::Create()); \
{ \
QUAD_DATA \
@@ -278,7 +278,7 @@ void CompareDrawQuad(DrawQuad* quad,
quad_visible_rect, needs_blending, \
a, b, c, d, e, f, g, h); \
} \
- SETUP_AND_COPY_QUAD_ALL_1(Type, quad_all, copyA);
+ SETUP_AND_COPY_QUAD_ALL_1(Type, quad_all, copy_a);
#define CREATE_QUAD_9_NEW(Type, a, b, c, d, e, f, g, h, i) \
scoped_ptr<Type> quad_new(Type::Create()); \
« no previous file with comments | « cc/quads/draw_quad.h ('k') | cc/quads/render_pass.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698