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

Unified Diff: cc/layers/scrollbar_layer_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/scrollbar_layer_impl.cc ('k') | cc/layers/solid_color_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/scrollbar_layer_unittest.cc
diff --git a/cc/layers/scrollbar_layer_unittest.cc b/cc/layers/scrollbar_layer_unittest.cc
index aca731d202dcfc4a287d05a7b3677c80f46d7396..423776d07f675f0933de8a84fc5f6cfd93c80fef 100644
--- a/cc/layers/scrollbar_layer_unittest.cc
+++ b/cc/layers/scrollbar_layer_unittest.cc
@@ -91,7 +91,7 @@ TEST(ScrollbarLayerTest, ShouldScrollNonOverlayOnMainThread) {
// Create and attach a non-overlay scrollbar.
scoped_ptr<WebKit::WebScrollbar> scrollbar(FakeWebScrollbar::Create());
- static_cast<FakeWebScrollbar*>(scrollbar.get())->setOverlay(false);
+ static_cast<FakeWebScrollbar*>(scrollbar.get())->set_overlay(false);
scoped_ptr<LayerImpl> layer_impl_tree_root =
LayerImplForScrollAreaAndScrollbar(&host_impl, scrollbar.Pass(), false);
ScrollbarLayerImpl* scrollbar_layer_impl =
@@ -106,7 +106,7 @@ TEST(ScrollbarLayerTest, ShouldScrollNonOverlayOnMainThread) {
// Create and attach an overlay scrollbar.
scrollbar = FakeWebScrollbar::Create();
- static_cast<FakeWebScrollbar*>(scrollbar.get())->setOverlay(true);
+ static_cast<FakeWebScrollbar*>(scrollbar.get())->set_overlay(true);
layer_impl_tree_root =
LayerImplForScrollAreaAndScrollbar(&host_impl, scrollbar.Pass(), false);
@@ -190,7 +190,7 @@ TEST(ScrollbarLayerTest, SolidColorDrawQuads) {
FakeLayerTreeHostImpl host_impl(layer_tree_settings, &proxy);
scoped_ptr<WebKit::WebScrollbar> scrollbar(FakeWebScrollbar::Create());
- static_cast<FakeWebScrollbar*>(scrollbar.get())->setOverlay(true);
+ static_cast<FakeWebScrollbar*>(scrollbar.get())->set_overlay(true);
scoped_ptr<LayerImpl> layer_impl_tree_root =
LayerImplForScrollAreaAndScrollbar(&host_impl, scrollbar.Pass(), false);
ScrollbarLayerImpl* scrollbar_layer_impl =
« no previous file with comments | « cc/layers/scrollbar_layer_impl.cc ('k') | cc/layers/solid_color_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698