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

Unified Diff: ash/drag_drop/drag_drop_animation_observer_client.h

Issue 9222018: reland -- Disable animations during aura tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address reviewer comments. Created 8 years, 11 months 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
Index: ash/drag_drop/drag_drop_animation_observer_client.h
diff --git a/ash/drag_drop/drag_drop_animation_observer_client.h b/ash/drag_drop/drag_drop_animation_observer_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..f032b198db169282ffd88bdf899cefabddc0d529
--- /dev/null
+++ b/ash/drag_drop/drag_drop_animation_observer_client.h
@@ -0,0 +1,31 @@
+// 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.
+
+#ifndef ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
+#define ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
+#pragma once
+
+#include "ash/ash_export.h"
+
+namespace ui {
+class ImplicitAnimationObserver;
+} // namespace ui
+
+namespace ash {
+namespace internal {
+
+class ASH_EXPORT DragDropAnimationObserverClient {
sky 2012/01/27 17:54:10 I think I sent you on the wrong path here. There's
+ public:
+ virtual void OnDragDropAnimationsCompleted(
+ ui::ImplicitAnimationObserver* observer) = 0;
+
+ protected:
+ virtual ~DragDropAnimationObserverClient() {}
+};
+
+} // namespace internal
+} // namespace ash
+
+#endif // ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
+

Powered by Google App Engine
This is Rietveld 408576698