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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/compositor/test/test_layer_animation_timer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/test/test_layer_animation_timer.cc
diff --git a/ui/compositor/test/test_layer_animation_timer.cc b/ui/compositor/test/test_layer_animation_timer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0d6cf94cca686def4ad386d5abbe3b80472a8f4e
--- /dev/null
+++ b/ui/compositor/test/test_layer_animation_timer.cc
@@ -0,0 +1,41 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/compositor/test/test_layer_animation_timer.h"
+
+#include "base/logging.h"
+
+namespace ui {
+
+TestLayerAnimationTimer::TestLayerAnimationTimer() {
+ NOTIMPLEMENTED();
+}
+
+TestLayerAnimationTimer::~TestLayerAnimationTimer() {
+ NOTIMPLEMENTED();
+}
+
+void TestLayerAnimationTimer::Start(AnimationContainerElement*) {
+ NOTIMPLEMENTED();
+}
+
+void TestLayerAnimationTimer::Stop(AnimationContainerElement*) {
+ NOTIMPLEMENTED();
+}
+
+base::TimeTicks TestLayerAnimationTimer::last_tick_time() const {
+ NOTIMPLEMENTED();
+ return base::TimeTicks();
+}
+
+bool TestLayerAnimationTimer::is_running() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void Advance(base::TimeDelta delta) {
+ NOTIMPLEMENTED();
+}
+
+} // namespace ui
« 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