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_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 <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/launcher/launcher_delegate.h" | 10 #include "ash/launcher/launcher_delegate.h" |
11 #include "ash/launcher/launcher_types.h" | 11 #include "ash/launcher/launcher_types.h" |
12 #include "ash/shelf_types.h" | 12 #include "ash/shelf/shelf_types.h" |
13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
14 #include "chrome/browser/extensions/app_icon_loader.h" | 14 #include "chrome/browser/extensions/app_icon_loader.h" |
15 #include "chrome/browser/extensions/extension_prefs.h" | 15 #include "chrome/browser/extensions/extension_prefs.h" |
16 | 16 |
17 class BrowserLauncherItemControllerTest; | 17 class BrowserLauncherItemControllerTest; |
18 class LauncherItemController; | 18 class LauncherItemController; |
19 class Profile; | 19 class Profile; |
20 class ChromeLauncherAppMenuItem; | 20 class ChromeLauncherAppMenuItem; |
21 class ChromeLauncherControllerPerApp; | 21 class ChromeLauncherControllerPerApp; |
22 | 22 |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 virtual void SetAppTabHelperForTest(AppTabHelper* helper) = 0; | 292 virtual void SetAppTabHelperForTest(AppTabHelper* helper) = 0; |
293 virtual void SetAppIconLoaderForTest(extensions::AppIconLoader* loader) = 0; | 293 virtual void SetAppIconLoaderForTest(extensions::AppIconLoader* loader) = 0; |
294 virtual const std::string& GetAppIdFromLauncherIdForTest( | 294 virtual const std::string& GetAppIdFromLauncherIdForTest( |
295 ash::LauncherID id) = 0; | 295 ash::LauncherID id) = 0; |
296 | 296 |
297 private: | 297 private: |
298 static ChromeLauncherController* instance_; | 298 static ChromeLauncherController* instance_; |
299 }; | 299 }; |
300 | 300 |
301 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ | 301 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ |
OLD | NEW |