diff options
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(); |