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 CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/common/shelf/shelf_item_types.h" | 10 #include "ash/public/cpp/shelf_item.h" |
11 #include "ash/public/interfaces/shelf.mojom.h" | 11 #include "ash/public/interfaces/shelf.mojom.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "ui/events/event.h" | 14 #include "ui/events/event.h" |
15 | 15 |
16 class AppWindowLauncherItemController; | 16 class AppWindowLauncherItemController; |
17 class ChromeLauncherController; | 17 class ChromeLauncherController; |
18 | 18 |
19 using MenuItemList = std::vector<ash::mojom::MenuItemPtr>; | 19 using MenuItemList = std::vector<ash::mojom::MenuItemPtr>; |
20 | 20 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // applications. | 75 // applications. |
76 int locked_; | 76 int locked_; |
77 | 77 |
78 // Set to true if the launcher item image has been set by the controller. | 78 // Set to true if the launcher item image has been set by the controller. |
79 bool image_set_by_controller_; | 79 bool image_set_by_controller_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(LauncherItemController); | 81 DISALLOW_COPY_AND_ASSIGN(LauncherItemController); |
82 }; | 82 }; |
83 | 83 |
84 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ | 84 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_ITEM_CONTROLLER_H_ |
OLD | NEW |