diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 21:15:06 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 21:15:06 +0000 |
commit | bf691c24ca3cf0ebbe8c82e871b4b05bd4256f6d (patch) | |
tree | dba84d59df6abc81803ce0191ccb78c42d4ca55b /cc/input/top_controls_manager_unittest.cc | |
parent | 01fc514f488305c0c57038c3d5c7b28eb09df4cd (diff) | |
download | chromium_src-bf691c24ca3cf0ebbe8c82e871b4b05bd4256f6d.zip chromium_src-bf691c24ca3cf0ebbe8c82e871b4b05bd4256f6d.tar.gz chromium_src-bf691c24ca3cf0ebbe8c82e871b4b05bd4256f6d.tar.bz2 |
Fix cpplint errors in cc/(animation|input|layers|trees|test)/
This fixes lint errors in everything except for the few stragglers (occlusion unit test, etc) that haven't been chromified.
BUG=144577
Review URL: https://chromiumcodereview.appspot.com/12965007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/input/top_controls_manager_unittest.cc')
-rw-r--r-- | cc/input/top_controls_manager_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cc/input/top_controls_manager_unittest.cc b/cc/input/top_controls_manager_unittest.cc index 6ff002b..b3bc722c 100644 --- a/cc/input/top_controls_manager_unittest.cc +++ b/cc/input/top_controls_manager_unittest.cc @@ -136,7 +136,7 @@ TEST(TopControlsManagerTest, PartialShownHideAnimation) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_LT(manager->controls_top_offset(), previous_offset); @@ -166,7 +166,7 @@ TEST(TopControlsManagerTest, PartialShownShowAnimation) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_GT(manager->controls_top_offset(), previous_offset); @@ -192,7 +192,7 @@ TEST(TopControlsManagerTest, PartialHiddenWithAmbiguousThresholdShows) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_GT(manager->controls_top_offset(), previous_offset); @@ -218,7 +218,7 @@ TEST(TopControlsManagerTest, PartialHiddenWithAmbiguousThresholdHides) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_LT(manager->controls_top_offset(), previous_offset); @@ -248,7 +248,7 @@ TEST(TopControlsManagerTest, PartialShownWithAmbiguousThresholdHides) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_LT(manager->controls_top_offset(), previous_offset); @@ -278,7 +278,7 @@ TEST(TopControlsManagerTest, PartialShownWithAmbiguousThresholdShows) { base::TimeTicks time = base::TimeTicks::Now(); float previous_offset = manager->controls_top_offset(); - while(manager->animation()) { + while (manager->animation()) { time = base::TimeDelta::FromMicroseconds(100) + time; manager->Animate(time); EXPECT_GT(manager->controls_top_offset(), previous_offset); |