OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_LAUNCHER_LAUNCHER_VIEW_H_ | 5 #ifndef ASH_LAUNCHER_LAUNCHER_VIEW_H_ |
6 #define ASH_LAUNCHER_LAUNCHER_VIEW_H_ | 6 #define ASH_LAUNCHER_LAUNCHER_VIEW_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 Pointer pointer, | 196 Pointer pointer, |
197 bool canceled) OVERRIDE; | 197 bool canceled) OVERRIDE; |
198 virtual void MouseMovedOverButton(views::View* view) OVERRIDE; | 198 virtual void MouseMovedOverButton(views::View* view) OVERRIDE; |
199 virtual void MouseEnteredButton(views::View* view) OVERRIDE; | 199 virtual void MouseEnteredButton(views::View* view) OVERRIDE; |
200 virtual void MouseExitedButton(views::View* view) OVERRIDE; | 200 virtual void MouseExitedButton(views::View* view) OVERRIDE; |
201 virtual ShelfAlignment GetShelfAlignment() const OVERRIDE; | 201 virtual ShelfAlignment GetShelfAlignment() const OVERRIDE; |
202 virtual string16 GetAccessibleName(const views::View* view) OVERRIDE; | 202 virtual string16 GetAccessibleName(const views::View* view) OVERRIDE; |
203 | 203 |
204 // Overridden from views::ButtonListener: | 204 // Overridden from views::ButtonListener: |
205 virtual void ButtonPressed(views::Button* sender, | 205 virtual void ButtonPressed(views::Button* sender, |
206 const views::Event& event) OVERRIDE; | 206 const ui::Event& event) OVERRIDE; |
207 | 207 |
208 // Overridden from views::ContextMenuController: | 208 // Overridden from views::ContextMenuController: |
209 virtual void ShowContextMenuForView(views::View* source, | 209 virtual void ShowContextMenuForView(views::View* source, |
210 const gfx::Point& point) OVERRIDE; | 210 const gfx::Point& point) OVERRIDE; |
211 | 211 |
212 // Overridden from views::BoundsAnimatorObserver: | 212 // Overridden from views::BoundsAnimatorObserver: |
213 virtual void OnBoundsAnimatorProgressed( | 213 virtual void OnBoundsAnimatorProgressed( |
214 views::BoundsAnimator* animator) OVERRIDE; | 214 views::BoundsAnimator* animator) OVERRIDE; |
215 virtual void OnBoundsAnimatorDone(views::BoundsAnimator* animator) OVERRIDE; | 215 virtual void OnBoundsAnimatorDone(views::BoundsAnimator* animator) OVERRIDE; |
216 | 216 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 // alignment). | 272 // alignment). |
273 int leading_inset_; | 273 int leading_inset_; |
274 | 274 |
275 DISALLOW_COPY_AND_ASSIGN(LauncherView); | 275 DISALLOW_COPY_AND_ASSIGN(LauncherView); |
276 }; | 276 }; |
277 | 277 |
278 } // namespace internal | 278 } // namespace internal |
279 } // namespace ash | 279 } // namespace ash |
280 | 280 |
281 #endif // ASH_LAUNCHER_LAUNCHER_VIEW_H_ | 281 #endif // ASH_LAUNCHER_LAUNCHER_VIEW_H_ |
OLD | NEW |