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_ |
+ |