diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 03:29:29 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 03:29:29 +0000 |
commit | ed511b8dbf23c216aa87e11e9d49c1e69d82de60 (patch) | |
tree | ff1bdc0c8c74a0357c07847d4f3e9f32190930df /cc/input | |
parent | 69fc57001ee3a1496830488254710865bc8f52b3 (diff) | |
download | chromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.zip chromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.tar.gz chromium_src-ed511b8dbf23c216aa87e11e9d49c1e69d82de60.tar.bz2 |
cc: Fix capitalization style in chromified files.
Style-only change.
Many already-chromified files missed a variable or function name
here and there. This grabs (hopefully) all of them.
For the record, I found these with:
git gs '[^a-zA-Z0-9_>\."][a-jl-z]\+[A-Z][A-Za-z0-9_]*\($\|[ !=;,\.^&*)"]\)'
R=enne
BUG=
Review URL: https://chromiumcodereview.appspot.com/12676029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/input')
-rw-r--r-- | cc/input/input_handler.h | 2 | ||||
-rw-r--r-- | cc/input/top_controls_manager_unittest.cc | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cc/input/input_handler.h b/cc/input/input_handler.h index 7be60a1..cf18a66 100644 --- a/cc/input/input_handler.h +++ b/cc/input/input_handler.h @@ -41,7 +41,7 @@ class CC_EXPORT InputHandlerClient { ScrollInputType type) = 0; // Scroll the selected layer starting at the given position. If the scroll - // type given to scrollBegin was a gesture, then the scroll point and delta + // type given to ScrollBegin was a gesture, then the scroll point and delta // should be in viewport (logical pixel) coordinates. Otherwise they are in // scrolling layer's (logical pixel) space. If there is no room to move the // layer in the requested direction, its first ancestor layer that can be diff --git a/cc/input/top_controls_manager_unittest.cc b/cc/input/top_controls_manager_unittest.cc index dbe174f..6ff002b 100644 --- a/cc/input/top_controls_manager_unittest.cc +++ b/cc/input/top_controls_manager_unittest.cc @@ -73,7 +73,7 @@ class MockTopControlsManagerClient : public TopControlsManagerClient { float top_controls_hide_threshold_; }; -TEST(TopControlsManagerTest, ensureScrollThresholdApplied) { +TEST(TopControlsManagerTest, EnsureScrollThresholdApplied) { MockTopControlsManagerClient client(0.5f, 0.5f); TopControlsManager* manager = client.manager(); @@ -117,7 +117,7 @@ TEST(TopControlsManagerTest, ensureScrollThresholdApplied) { manager->ScrollEnd(); } -TEST(TopControlsManagerTest, partialShownHideAnimation) { +TEST(TopControlsManagerTest, PartialShownHideAnimation) { MockTopControlsManagerClient client(0.5f, 0.5f); TopControlsManager* manager = client.manager(); manager->ScrollBegin(); @@ -147,7 +147,7 @@ TEST(TopControlsManagerTest, partialShownHideAnimation) { EXPECT_EQ(0.f, manager->content_top_offset()); } -TEST(TopControlsManagerTest, partialShownShowAnimation) { +TEST(TopControlsManagerTest, PartialShownShowAnimation) { MockTopControlsManagerClient client(0.5f, 0.5f); TopControlsManager* manager = client.manager(); manager->ScrollBegin(); @@ -177,7 +177,7 @@ TEST(TopControlsManagerTest, partialShownShowAnimation) { EXPECT_EQ(100.f, manager->content_top_offset()); } -TEST(TopControlsManagerTest, partialHiddenWithAmbiguousThresholdShows) { +TEST(TopControlsManagerTest, PartialHiddenWithAmbiguousThresholdShows) { MockTopControlsManagerClient client(0.25f, 0.25f); TopControlsManager* manager = client.manager(); @@ -203,7 +203,7 @@ TEST(TopControlsManagerTest, partialHiddenWithAmbiguousThresholdShows) { EXPECT_EQ(100.f, manager->content_top_offset()); } -TEST(TopControlsManagerTest, partialHiddenWithAmbiguousThresholdHides) { +TEST(TopControlsManagerTest, PartialHiddenWithAmbiguousThresholdHides) { MockTopControlsManagerClient client(0.25f, 0.25f); TopControlsManager* manager = client.manager(); @@ -229,7 +229,7 @@ TEST(TopControlsManagerTest, partialHiddenWithAmbiguousThresholdHides) { EXPECT_EQ(0.f, manager->content_top_offset()); } -TEST(TopControlsManagerTest, partialShownWithAmbiguousThresholdHides) { +TEST(TopControlsManagerTest, PartialShownWithAmbiguousThresholdHides) { MockTopControlsManagerClient client(0.25f, 0.25f); TopControlsManager* manager = client.manager(); @@ -259,7 +259,7 @@ TEST(TopControlsManagerTest, partialShownWithAmbiguousThresholdHides) { EXPECT_EQ(0.f, manager->content_top_offset()); } -TEST(TopControlsManagerTest, partialShownWithAmbiguousThresholdShows) { +TEST(TopControlsManagerTest, PartialShownWithAmbiguousThresholdShows) { MockTopControlsManagerClient client(0.25f, 0.25f); TopControlsManager* manager = client.manager(); |