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

Side by Side Diff: ui/compositor/test/test_layer_animation_timer.cc

Issue 11316135: NOT READY FOR REVIEW - Add support for custom animation timers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/compositor/test/test_layer_animation_timer.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/compositor/test/test_layer_animation_timer.h"
6
7 #include "base/logging.h"
8
9 namespace ui {
10
11 TestLayerAnimationTimer::TestLayerAnimationTimer() {
12 NOTIMPLEMENTED();
13 }
14
15 TestLayerAnimationTimer::~TestLayerAnimationTimer() {
16 NOTIMPLEMENTED();
17 }
18
19 void TestLayerAnimationTimer::Start(AnimationContainerElement*) {
20 NOTIMPLEMENTED();
21 }
22
23 void TestLayerAnimationTimer::Stop(AnimationContainerElement*) {
24 NOTIMPLEMENTED();
25 }
26
27 base::TimeTicks TestLayerAnimationTimer::last_tick_time() const {
28 NOTIMPLEMENTED();
29 return base::TimeTicks();
30 }
31
32 bool TestLayerAnimationTimer::is_running() const {
33 NOTIMPLEMENTED();
34 return false;
35 }
36
37 void Advance(base::TimeDelta delta) {
38 NOTIMPLEMENTED();
39 }
40
41 } // namespace ui
OLDNEW
« no previous file with comments | « ui/compositor/test/test_layer_animation_timer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698