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

Unified Diff: cc/test/layer_tree_json_parser.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/test/fake_web_scrollbar.cc ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/layer_tree_json_parser.cc
diff --git a/cc/test/layer_tree_json_parser.cc b/cc/test/layer_tree_json_parser.cc
index 3b40170c159537ea43245db38338d2362204a62a..435e2bf690b816bed74f5c6c49d10722b3ca4c0c 100644
--- a/cc/test/layer_tree_json_parser.cc
+++ b/cc/test/layer_tree_json_parser.cc
@@ -79,9 +79,9 @@ scoped_refptr<Layer> ParseTreeFromValue(base::Value* val,
for (int i = 0; i < 16; ++i)
success &= list->GetDouble(i, &transform[i]);
- gfx::Transform gfxTransform;
- gfxTransform.matrix().setColMajord(transform);
- new_layer->SetTransform(gfxTransform);
+ gfx::Transform layer_transform;
+ layer_transform.matrix().setColMajord(transform);
+ new_layer->SetTransform(layer_transform);
success &= dict->GetList("Children", &list);
for (ListValue::const_iterator it = list->begin();
« no previous file with comments | « cc/test/fake_web_scrollbar.cc ('k') | cc/test/layer_tree_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698