OLD | NEW |
---|---|
(Empty) | |
1 | |
sky
2012/04/13 17:32:15
remove mepty line.
| |
2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
3 // Use of this source code is governed by a BSD-style license that can be | |
4 // found in the LICENSE file. | |
5 | |
6 #ifndef ASH_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ | |
7 #define ASH_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ | |
8 #pragma once | |
9 | |
10 namespace ash { | |
11 | |
12 class ASH_EXPORT LauncherIconObserver { | |
13 public: | |
14 // Invoked when any icon on launcher changes position. | |
15 virtual void OnLauncherIconPositionsChanged() = 0; | |
16 | |
17 protected: | |
18 virtual ~LauncherIconObserver() {} | |
19 }; | |
20 | |
21 } // namespace ash | |
22 | |
23 #endif // ASH_LAUNCHER_LAUNCHER_ICON_OBSERVER_H_ | |
OLD | NEW |