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

Unified Diff: ash/wm/shelf_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/wm/shelf_animation_observer_client.h
diff --git a/ash/wm/shelf_animation_observer_client.h b/ash/wm/shelf_animation_observer_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..584019adbb51993598ab0838947093e4f58ebd40
--- /dev/null
+++ b/ash/wm/shelf_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_WM_SHELF_ANIMATION_OBSERVER_CLIENT_H_
+#define ASH_WM_SHELF_ANIMATION_OBSERVER_CLIENT_H_
+#pragma once
+
+#include "ash/ash_export.h"
+
+namespace ui {
+class ImplicitAnimationObserver;
+} // namespace ui
+
+namespace ash {
+namespace internal {
+
+class ASH_EXPORT ShelfAnimationObserverClient {
+ public:
+ virtual void OnShelfAnimationsCompleted(
+ ui::ImplicitAnimationObserver* observer) = 0;
+
+ protected:
+ virtual ~ShelfAnimationObserverClient() {}
+};
+
+} // namespace internal
+} // namespace ash
+
+#endif // ASH_WM_SHELF_ANIMATION_OBSERVER_CLIENT_H_
+

Powered by Google App Engine
This is Rietveld 408576698