diff options
author | mithro@mithis.com <mithro@mithis.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-11 20:42:00 +0000 |
---|---|---|
committer | mithro@mithis.com <mithro@mithis.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-11 20:42:00 +0000 |
commit | 2715264d68ec4905956f77abb8edf3e4b0cca597 (patch) | |
tree | 0b79ff9e813cf223e01d6767bc5a234686248492 /cc/test/layer_tree_test.cc | |
parent | 6fce66d70cf96989c5a274a7f8f0d333b2be43aa (diff) | |
download | chromium_src-2715264d68ec4905956f77abb8edf3e4b0cca597.zip chromium_src-2715264d68ec4905956f77abb8edf3e4b0cca597.tar.gz chromium_src-2715264d68ec4905956f77abb8edf3e4b0cca597.tar.bz2 |
Removing the use of base::Time inside the LayerTreeHost system.
First step before removing Now() usage from the class.
DEPS=194543002
BUG=345459
Review URL: https://codereview.chromium.org/178103004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/layer_tree_test.cc')
-rw-r--r-- | cc/test/layer_tree_test.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc index 8e5a43b..1290802 100644 --- a/cc/test/layer_tree_test.cc +++ b/cc/test/layer_tree_test.cc @@ -169,10 +169,9 @@ class LayerTreeHostImplForTesting : public LayerTreeHostImpl { test_hooks_->DidSetVisibleOnImplTree(this, visible); } - virtual void AnimateLayers(base::TimeTicks monotonic_time, - base::Time wall_clock_time) OVERRIDE { + virtual void AnimateLayers(base::TimeTicks monotonic_time) OVERRIDE { test_hooks_->WillAnimateLayers(this, monotonic_time); - LayerTreeHostImpl::AnimateLayers(monotonic_time, wall_clock_time); + LayerTreeHostImpl::AnimateLayers(monotonic_time); test_hooks_->AnimateLayers(this, monotonic_time); } |