| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHROME_LAUNCHER_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/common/shelf/shelf_item_delegate.h" | 12 #include "ash/common/shelf/shelf_item_delegate.h" |
| 13 #include "ash/common/shelf/shelf_item_types.h" | 13 #include "ash/common/shelf/shelf_item_types.h" |
| 14 #include "ash/public/interfaces/shelf.mojom.h" | 14 #include "ash/public/interfaces/shelf.mojom.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "chrome/browser/ui/app_icon_loader.h" | 16 #include "chrome/browser/ui/app_icon_loader.h" |
| 17 #include "chrome/browser/ui/app_icon_loader_delegate.h" | 17 #include "chrome/browser/ui/app_icon_loader_delegate.h" |
| 18 #include "chrome/browser/ui/app_list/app_list_controller_delegate.h" | 18 #include "chrome/browser/ui/app_list/app_list_controller_delegate.h" |
| 19 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h" | 19 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h" |
| 20 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h" | 20 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h" |
| 21 #include "chrome/browser/ui/ash/launcher/settings_window_observer.h" | 21 #include "chrome/browser/ui/ash/launcher/settings_window_observer.h" |
| 22 #include "extensions/common/constants.h" | 22 #include "extensions/common/constants.h" |
| 23 #include "mojo/public/cpp/bindings/associated_binding.h" | 23 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 24 | 24 |
| 25 class AccountId; | 25 class AccountId; |
| 26 class ArcAppDeferredLauncherController; | 26 class ArcAppDeferredLauncherController; |
| 27 class Browser; | |
| 28 class BrowserShortcutLauncherItemController; | 27 class BrowserShortcutLauncherItemController; |
| 29 class GURL; | 28 class GURL; |
| 30 class LauncherControllerHelper; | 29 class LauncherControllerHelper; |
| 31 class LauncherItemController; | 30 class LauncherItemController; |
| 32 | 31 |
| 33 namespace ash { | 32 namespace ash { |
| 34 class WmShelf; | 33 class WmShelf; |
| 35 } | 34 } |
| 36 | 35 |
| 37 namespace content { | 36 namespace content { |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 // An observer that manages the shelf title and icon for settings windows. | 314 // An observer that manages the shelf title and icon for settings windows. |
| 316 SettingsWindowObserver settings_window_observer_; | 315 SettingsWindowObserver settings_window_observer_; |
| 317 | 316 |
| 318 // Used to load the images for app items. | 317 // Used to load the images for app items. |
| 319 std::vector<std::unique_ptr<AppIconLoader>> app_icon_loaders_; | 318 std::vector<std::unique_ptr<AppIconLoader>> app_icon_loaders_; |
| 320 | 319 |
| 321 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherController); | 320 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherController); |
| 322 }; | 321 }; |
| 323 | 322 |
| 324 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ | 323 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ |
| OLD | NEW |