Chromium Code Reviews| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 539 // The most recent activated folder item view. | 539 // The most recent activated folder item view. |
| 540 AppListItemView* activated_folder_item_view_; | 540 AppListItemView* activated_folder_item_view_; |
| 541 | 541 |
| 542 // Tracks if drag_view_ is dragged out of the folder container bubble | 542 // Tracks if drag_view_ is dragged out of the folder container bubble |
| 543 // when dragging a item inside a folder. | 543 // when dragging a item inside a folder. |
| 544 bool drag_out_of_folder_container_; | 544 bool drag_out_of_folder_container_; |
| 545 | 545 |
| 546 // 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. |
| 547 bool dragging_for_reparent_item_; | 547 bool dragging_for_reparent_item_; |
| 548 | 548 |
| 549 // True if the fullscreen app list feature is enabled. | |
| 550 bool is_fullscreen_app_list_enabled_; | |
|
xiyuan
2017/06/15 19:40:05
nit: const bool since we don't expect to change dy
weidongg
2017/06/15 20:30:41
Done.
| |
| 551 | |
| 549 DISALLOW_COPY_AND_ASSIGN(AppsGridView); | 552 DISALLOW_COPY_AND_ASSIGN(AppsGridView); |
| 550 }; | 553 }; |
| 551 | 554 |
| 552 } // namespace app_list | 555 } // namespace app_list |
| 553 | 556 |
| 554 #endif // UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ | 557 #endif // UI_APP_LIST_VIEWS_APPS_GRID_VIEW_H_ |
| OLD | NEW |