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 <list> |
9 #include <map> | 10 #include <map> |
10 #include <set> | 11 #include <set> |
11 #include <string> | 12 #include <string> |
12 #include <vector> | 13 #include <vector> |
13 | 14 |
14 #include "base/command_line.h" | 15 #include "base/command_line.h" |
15 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
16 #include "base/file_path.h" | 17 #include "base/file_path.h" |
17 #include "base/gtest_prod_util.h" | 18 #include "base/gtest_prod_util.h" |
18 #include "base/memory/linked_ptr.h" | 19 #include "base/memory/linked_ptr.h" |
(...skipping 27 matching lines...) Expand all Loading... |
46 | 47 |
47 class AppNotificationManager; | 48 class AppNotificationManager; |
48 class BookmarkExtensionEventRouter; | 49 class BookmarkExtensionEventRouter; |
49 class CrxInstaller; | 50 class CrxInstaller; |
50 class ExtensionBrowserEventRouter; | 51 class ExtensionBrowserEventRouter; |
51 class ExtensionContentSettingsStore; | 52 class ExtensionContentSettingsStore; |
52 class ExtensionCookiesEventRouter; | 53 class ExtensionCookiesEventRouter; |
53 class ExtensionDownloadsEventRouter; | 54 class ExtensionDownloadsEventRouter; |
54 class ExtensionFileBrowserEventRouter; | 55 class ExtensionFileBrowserEventRouter; |
55 class ExtensionGlobalError; | 56 class ExtensionGlobalError; |
56 class ExtensionInstallUI; | |
57 class ExtensionManagementEventRouter; | 57 class ExtensionManagementEventRouter; |
58 class ExtensionPreferenceEventRouter; | 58 class ExtensionPreferenceEventRouter; |
59 class ExtensionSyncData; | 59 class ExtensionSyncData; |
60 class ExtensionToolbarModel; | 60 class ExtensionToolbarModel; |
61 class ExtensionUpdater; | 61 class ExtensionUpdater; |
62 class ExtensionWebNavigationEventRouter; | 62 class ExtensionWebNavigationEventRouter; |
63 class HistoryExtensionEventRouter; | 63 class HistoryExtensionEventRouter; |
64 class GURL; | 64 class GURL; |
65 class PendingExtensionManager; | 65 class PendingExtensionManager; |
66 class Profile; | 66 class Profile; |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 extensions::ProcessMap process_map_; | 794 extensions::ProcessMap process_map_; |
795 | 795 |
796 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 796 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
797 InstallAppsWithUnlimtedStorage); | 797 InstallAppsWithUnlimtedStorage); |
798 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 798 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
799 InstallAppsAndCheckStorageProtection); | 799 InstallAppsAndCheckStorageProtection); |
800 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 800 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
801 }; | 801 }; |
802 | 802 |
803 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 803 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |