Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller.h

Issue 696543002: Move the chrome.management API to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 12 matching lines...) Expand all
23 #include "base/compiler_specific.h" 23 #include "base/compiler_specific.h"
24 #include "base/memory/scoped_ptr.h" 24 #include "base/memory/scoped_ptr.h"
25 #include "base/memory/scoped_vector.h" 25 #include "base/memory/scoped_vector.h"
26 #include "base/prefs/pref_change_registrar.h" 26 #include "base/prefs/pref_change_registrar.h"
27 #include "chrome/browser/extensions/app_icon_loader.h" 27 #include "chrome/browser/extensions/app_icon_loader.h"
28 #include "chrome/browser/prefs/pref_service_syncable_observer.h" 28 #include "chrome/browser/prefs/pref_service_syncable_observer.h"
29 #include "chrome/browser/ui/ash/app_sync_ui_state_observer.h" 29 #include "chrome/browser/ui/ash/app_sync_ui_state_observer.h"
30 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h" 30 #include "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h"
31 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h" 31 #include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h"
32 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" 32 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h"
33 #include "chrome/common/extensions/extension_constants.h"
34 #include "extensions/browser/extension_registry_observer.h" 33 #include "extensions/browser/extension_registry_observer.h"
34 #include "extensions/common/constants.h"
35 #include "ui/aura/window_observer.h" 35 #include "ui/aura/window_observer.h"
36 36
37 class AppSyncUIState; 37 class AppSyncUIState;
38 class Browser; 38 class Browser;
39 class BrowserShortcutLauncherItemController; 39 class BrowserShortcutLauncherItemController;
40 class BrowserStatusMonitor; 40 class BrowserStatusMonitor;
41 class ExtensionEnableFlow; 41 class ExtensionEnableFlow;
42 class GURL; 42 class GURL;
43 class LauncherItemController; 43 class LauncherItemController;
44 class Profile; 44 class Profile;
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 // The list of running & un-pinned applications for different users on hidden 602 // The list of running & un-pinned applications for different users on hidden
603 // desktops. 603 // desktops.
604 typedef std::vector<std::string> RunningAppListIds; 604 typedef std::vector<std::string> RunningAppListIds;
605 typedef std::map<std::string, RunningAppListIds> RunningAppListIdMap; 605 typedef std::map<std::string, RunningAppListIds> RunningAppListIdMap;
606 RunningAppListIdMap last_used_running_application_order_; 606 RunningAppListIdMap last_used_running_application_order_;
607 607
608 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherController); 608 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherController);
609 }; 609 };
610 610
611 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_ 611 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698