| 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_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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "extensions/browser/uninstall_reason.h" | 33 #include "extensions/browser/uninstall_reason.h" |
| 34 #include "extensions/common/extension.h" | 34 #include "extensions/common/extension.h" |
| 35 #include "extensions/common/extension_set.h" | 35 #include "extensions/common/extension_set.h" |
| 36 #include "extensions/common/manifest.h" | 36 #include "extensions/common/manifest.h" |
| 37 #include "extensions/features/features.h" | 37 #include "extensions/features/features.h" |
| 38 | 38 |
| 39 #if !BUILDFLAG(ENABLE_EXTENSIONS) | 39 #if !BUILDFLAG(ENABLE_EXTENSIONS) |
| 40 #error "Extensions must be enabled" | 40 #error "Extensions must be enabled" |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 class GURL; | |
| 44 class HostContentSettingsMap; | 43 class HostContentSettingsMap; |
| 45 class Profile; | 44 class Profile; |
| 46 | 45 |
| 47 namespace base { | 46 namespace base { |
| 48 class CommandLine; | 47 class CommandLine; |
| 49 class SequencedTaskRunner; | 48 class SequencedTaskRunner; |
| 50 class Version; | |
| 51 } | 49 } |
| 52 | 50 |
| 53 namespace content { | 51 namespace content { |
| 54 class DevToolsAgentHost; | 52 class DevToolsAgentHost; |
| 55 } | 53 } |
| 56 | 54 |
| 57 namespace extensions { | 55 namespace extensions { |
| 58 class AppDataMigrator; | 56 class AppDataMigrator; |
| 59 class ComponentLoader; | 57 class ComponentLoader; |
| 60 class CrxInstaller; | 58 class CrxInstaller; |
| 61 class ExtensionActionStorageManager; | 59 class ExtensionActionStorageManager; |
| 62 class ExtensionDownloader; | |
| 63 class ExtensionDownloaderDelegate; | |
| 64 class ExtensionErrorController; | 60 class ExtensionErrorController; |
| 65 class ExtensionRegistry; | 61 class ExtensionRegistry; |
| 66 class ExtensionSystem; | 62 class ExtensionSystem; |
| 67 class ExtensionUpdater; | 63 class ExtensionUpdater; |
| 68 class ExternalInstallManager; | 64 class ExternalInstallManager; |
| 69 class OneShotEvent; | 65 class OneShotEvent; |
| 70 class RendererStartupHelper; | 66 class RendererStartupHelper; |
| 71 class SharedModuleService; | 67 class SharedModuleService; |
| 72 class UpdateObserver; | 68 class UpdateObserver; |
| 73 } // namespace extensions | 69 } // namespace extensions |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 GreylistUnknownDontChange); | 753 GreylistUnknownDontChange); |
| 758 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 754 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 759 ManagementPolicyProhibitsEnableOnInstalled); | 755 ManagementPolicyProhibitsEnableOnInstalled); |
| 760 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 756 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 761 BlockAndUnblockBlacklistedExtension); | 757 BlockAndUnblockBlacklistedExtension); |
| 762 | 758 |
| 763 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 759 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 764 }; | 760 }; |
| 765 | 761 |
| 766 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 762 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |