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 <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "extensions/browser/uninstall_reason.h" | 29 #include "extensions/browser/uninstall_reason.h" |
30 #include "extensions/common/extension.h" | 30 #include "extensions/common/extension.h" |
31 #include "extensions/common/extension_set.h" | 31 #include "extensions/common/extension_set.h" |
32 #include "extensions/common/manifest.h" | 32 #include "extensions/common/manifest.h" |
33 #include "sync/api/string_ordinal.h" | 33 #include "sync/api/string_ordinal.h" |
34 | 34 |
35 #if !defined(ENABLE_EXTENSIONS) | 35 #if !defined(ENABLE_EXTENSIONS) |
36 #error "Extensions must be enabled" | 36 #error "Extensions must be enabled" |
37 #endif | 37 #endif |
38 | 38 |
39 class ExtensionSyncService; | |
40 class GURL; | 39 class GURL; |
41 class HostContentSettingsMap; | 40 class HostContentSettingsMap; |
42 class Profile; | 41 class Profile; |
43 | 42 |
44 namespace base { | 43 namespace base { |
45 class CommandLine; | 44 class CommandLine; |
46 class SequencedTaskRunner; | 45 class SequencedTaskRunner; |
47 class Version; | 46 class Version; |
48 } | 47 } |
49 | 48 |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 GreylistUnknownDontChange); | 760 GreylistUnknownDontChange); |
762 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 761 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
763 ManagementPolicyProhibitsEnableOnInstalled); | 762 ManagementPolicyProhibitsEnableOnInstalled); |
764 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 763 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
765 BlockAndUnblockBlacklistedExtension); | 764 BlockAndUnblockBlacklistedExtension); |
766 | 765 |
767 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 766 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
768 }; | 767 }; |
769 | 768 |
770 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 769 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |