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

Unified Diff: cc/layers/solid_color_layer_impl_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/layers/solid_color_layer_impl.cc ('k') | cc/layers/texture_layer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/solid_color_layer_impl_unittest.cc
diff --git a/cc/layers/solid_color_layer_impl_unittest.cc b/cc/layers/solid_color_layer_impl_unittest.cc
index 0d9ac61784c3e7302849e2ab7fdb1918a2eab892..b95ca0ce4be08a40310c06a0d487935ebb1df8a4 100644
--- a/cc/layers/solid_color_layer_impl_unittest.cc
+++ b/cc/layers/solid_color_layer_impl_unittest.cc
@@ -109,9 +109,9 @@ TEST(SolidColorLayerImplTest, VerifyOpaqueRect) {
scoped_refptr<Layer> root = Layer::Create();
root->AddChild(layer);
- std::vector<scoped_refptr<Layer> > renderSurfaceLayerList;
+ std::vector<scoped_refptr<Layer> > render_surface_layer_list;
LayerTreeHostCommon::CalculateDrawProperties(
- root, gfx::Size(500, 500), 1, 1, 1024, false, &renderSurfaceLayerList);
+ root, gfx::Size(500, 500), 1, 1, 1024, false, &render_surface_layer_list);
EXPECT_FALSE(layer->contents_opaque());
layer->SetBackgroundColor(SkColorSetARGBInline(255, 10, 20, 30));
@@ -124,7 +124,7 @@ TEST(SolidColorLayerImplTest, VerifyOpaqueRect) {
// The impl layer should call itself opaque as well.
EXPECT_TRUE(layer_impl->contents_opaque());
- // Impl layer has 1 opacity, and the color is opaque, so the opaqueRect
+ // Impl layer has 1 opacity, and the color is opaque, so the opaque_rect
// should be the full tile.
layer_impl->draw_properties().opacity = 1;
« no previous file with comments | « cc/layers/solid_color_layer_impl.cc ('k') | cc/layers/texture_layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698