| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSIONS_EXTENSION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 class AppNotificationManager; | 48 class AppNotificationManager; |
| 49 class CrxInstaller; | 49 class CrxInstaller; |
| 50 class ExtensionBookmarkEventRouter; | 50 class ExtensionBookmarkEventRouter; |
| 51 class ExtensionBrowserEventRouter; | 51 class ExtensionBrowserEventRouter; |
| 52 class ExtensionContentSettingsStore; | 52 class ExtensionContentSettingsStore; |
| 53 class ExtensionCookiesEventRouter; | 53 class ExtensionCookiesEventRouter; |
| 54 class ExtensionDownloadsEventRouter; | 54 class ExtensionDownloadsEventRouter; |
| 55 class ExtensionFileBrowserEventRouter; | 55 class ExtensionFileBrowserEventRouter; |
| 56 class ExtensionGlobalError; | 56 class ExtensionGlobalError; |
| 57 class ExtensionHistoryEventRouter; | 57 class HistoryExtensionEventRouter; |
| 58 class ExtensionInstallUI; | 58 class ExtensionInstallUI; |
| 59 class ExtensionManagementEventRouter; | 59 class ExtensionManagementEventRouter; |
| 60 class ExtensionPreferenceEventRouter; | 60 class ExtensionPreferenceEventRouter; |
| 61 class ExtensionServiceBackend; | 61 class ExtensionServiceBackend; |
| 62 class ExtensionSyncData; | 62 class ExtensionSyncData; |
| 63 class ExtensionToolbarModel; | 63 class ExtensionToolbarModel; |
| 64 class ExtensionUpdater; | 64 class ExtensionUpdater; |
| 65 class ExtensionWebNavigationEventRouter; | 65 class ExtensionWebNavigationEventRouter; |
| 66 class GURL; | 66 class GURL; |
| 67 class PendingExtensionManager; | 67 class PendingExtensionManager; |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 AppsPromo apps_promo_; | 798 AppsPromo apps_promo_; |
| 799 | 799 |
| 800 // Coordinates the extension download and install process from the gallery. | 800 // Coordinates the extension download and install process from the gallery. |
| 801 WebstoreInstaller webstore_installer_; | 801 WebstoreInstaller webstore_installer_; |
| 802 | 802 |
| 803 // Flag to make sure event routers are only initialized once. | 803 // Flag to make sure event routers are only initialized once. |
| 804 bool event_routers_initialized_; | 804 bool event_routers_initialized_; |
| 805 | 805 |
| 806 scoped_ptr<ExtensionDownloadsEventRouter> downloads_event_router_; | 806 scoped_ptr<ExtensionDownloadsEventRouter> downloads_event_router_; |
| 807 | 807 |
| 808 scoped_ptr<ExtensionHistoryEventRouter> history_event_router_; | 808 scoped_ptr<HistoryExtensionEventRouter> history_event_router_; |
| 809 | 809 |
| 810 scoped_ptr<ExtensionBrowserEventRouter> browser_event_router_; | 810 scoped_ptr<ExtensionBrowserEventRouter> browser_event_router_; |
| 811 | 811 |
| 812 scoped_ptr<ExtensionPreferenceEventRouter> preference_event_router_; | 812 scoped_ptr<ExtensionPreferenceEventRouter> preference_event_router_; |
| 813 | 813 |
| 814 scoped_ptr<ExtensionBookmarkEventRouter> bookmark_event_router_; | 814 scoped_ptr<ExtensionBookmarkEventRouter> bookmark_event_router_; |
| 815 | 815 |
| 816 scoped_ptr<ExtensionCookiesEventRouter> cookies_event_router_; | 816 scoped_ptr<ExtensionCookiesEventRouter> cookies_event_router_; |
| 817 | 817 |
| 818 scoped_ptr<ExtensionManagementEventRouter> management_event_router_; | 818 scoped_ptr<ExtensionManagementEventRouter> management_event_router_; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 844 ExtensionWarningSet extension_warnings_; | 844 ExtensionWarningSet extension_warnings_; |
| 845 | 845 |
| 846 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 846 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 847 InstallAppsWithUnlimtedStorage); | 847 InstallAppsWithUnlimtedStorage); |
| 848 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 848 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 849 InstallAppsAndCheckStorageProtection); | 849 InstallAppsAndCheckStorageProtection); |
| 850 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 850 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 851 }; | 851 }; |
| 852 | 852 |
| 853 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 853 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |