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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
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 #ifndef ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
6 #define ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
7 #pragma once
8
9 #include "ash/ash_export.h"
10
11 namespace ui {
12 class ImplicitAnimationObserver;
13 } // namespace ui
14
15 namespace ash {
16 namespace internal {
17
18 class ASH_EXPORT DragDropAnimationObserverClient {
sky 2012/01/27 17:54:10 I think I sent you on the wrong path here. There's
19 public:
20 virtual void OnDragDropAnimationsCompleted(
21 ui::ImplicitAnimationObserver* observer) = 0;
22
23 protected:
24 virtual ~DragDropAnimationObserverClient() {}
25 };
26
27 } // namespace internal
28 } // namespace ash
29
30 #endif // ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698