| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CONTRO
LLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CONTRO
LLER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CONTRO
LLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CONTRO
LLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h" | 11 #include "chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h" |
| 12 | 12 |
| 13 namespace extensions { | 13 namespace extensions { |
| 14 class AppWindow; | 14 class AppWindow; |
| 15 } | 15 } |
| 16 | 16 |
| 17 class ChromeLauncherController; | |
| 18 | |
| 19 // Shelf item delegate for extension app windows. | 17 // Shelf item delegate for extension app windows. |
| 20 class ExtensionAppWindowLauncherItemController | 18 class ExtensionAppWindowLauncherItemController |
| 21 : public AppWindowLauncherItemController { | 19 : public AppWindowLauncherItemController { |
| 22 public: | 20 public: |
| 23 ExtensionAppWindowLauncherItemController( | 21 explicit ExtensionAppWindowLauncherItemController( |
| 24 const ash::AppLaunchId& app_launch_id, | 22 const ash::AppLaunchId& app_launch_id); |
| 25 ChromeLauncherController* controller); | |
| 26 | 23 |
| 27 ~ExtensionAppWindowLauncherItemController() override; | 24 ~ExtensionAppWindowLauncherItemController() override; |
| 28 | 25 |
| 29 void AddAppWindow(extensions::AppWindow* app_window); | 26 void AddAppWindow(extensions::AppWindow* app_window); |
| 30 | 27 |
| 31 // AppWindowLauncherItemController: | 28 // AppWindowLauncherItemController: |
| 32 MenuItemList GetAppMenuItems(int event_flags) override; | 29 ash::MenuItemList GetAppMenuItems(int event_flags) override; |
| 33 void ExecuteCommand(uint32_t command_id, int32_t event_flags) override; | 30 void ExecuteCommand(uint32_t command_id, int32_t event_flags) override; |
| 34 | 31 |
| 35 private: | 32 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(ExtensionAppWindowLauncherItemController); | 33 DISALLOW_COPY_AND_ASSIGN(ExtensionAppWindowLauncherItemController); |
| 37 }; | 34 }; |
| 38 | 35 |
| 39 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CON
TROLLER_H_ | 36 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_EXTENSION_APP_WINDOW_LAUNCHER_ITEM_CON
TROLLER_H_ |
| OLD | NEW |