| OLD | NEW |
| (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_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ |
| 6 #define ASH_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/basictypes.h" |
| 10 |
| 11 namespace ash { |
| 12 |
| 13 class ASH_EXPORT LauncherIconObserver { |
| 14 public: |
| 15 LauncherIconObserver() {} |
| 16 |
| 17 // Invoked when any icon on launcher changes position. |
| 18 virtual void OnLauncherIconPositionsChanged() = 0; |
| 19 |
| 20 protected: |
| 21 virtual ~LauncherIconObserver() {} |
| 22 |
| 23 DISALLOW_COPY_AND_ASSIGN(LauncherIconObserver); |
| 24 }; |
| 25 |
| 26 } // namespace ash |
| 27 |
| 28 #endif // ASH_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ |
| OLD | NEW |