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 UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ |
6 #define UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <set> | 10 #include <set> |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "ui/compositor/layer_animation_observer.h" | 25 #include "ui/compositor/layer_animation_observer.h" |
26 #include "ui/gfx/image/image_skia_operations.h" | 26 #include "ui/gfx/image/image_skia_operations.h" |
27 #include "ui/views/animation/bounds_animator.h" | 27 #include "ui/views/animation/bounds_animator.h" |
28 #include "ui/views/controls/button/button.h" | 28 #include "ui/views/controls/button/button.h" |
29 #include "ui/views/controls/image_view.h" | 29 #include "ui/views/controls/image_view.h" |
30 #include "ui/views/view.h" | 30 #include "ui/views/view.h" |
31 #include "ui/views/view_model.h" | 31 #include "ui/views/view_model.h" |
32 | 32 |
33 namespace views { | 33 namespace views { |
34 class ButtonListener; | 34 class ButtonListener; |
35 class DragImageView; | |
36 } | 35 } |
37 | 36 |
38 namespace app_list { | 37 namespace app_list { |
39 | 38 |
40 namespace test { | 39 namespace test { |
41 class AppsGridViewTestApi; | 40 class AppsGridViewTestApi; |
42 } | 41 } |
43 | 42 |
44 class ApplicationDragAndDropHost; | 43 class ApplicationDragAndDropHost; |
45 class AppListItemView; | 44 class AppListItemView; |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 | 545 |
547 // True if the drag_view_ item is a folder item being dragged for reparenting. | 546 // True if the drag_view_ item is a folder item being dragged for reparenting. |
548 bool dragging_for_reparent_item_; | 547 bool dragging_for_reparent_item_; |
549 | 548 |
550 DISALLOW_COPY_AND_ASSIGN(AppsGridView); | 549 DISALLOW_COPY_AND_ASSIGN(AppsGridView); |
551 }; | 550 }; |
552 | 551 |
553 } // namespace app_list | 552 } // namespace app_list |
554 | 553 |
555 #endif // UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ | 554 #endif // UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ |
OLD | NEW |