| 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 <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "chrome/browser/extensions/blacklist.h" | 21 #include "chrome/browser/extensions/blacklist.h" |
| 22 #include "chrome/browser/extensions/extension_function_histogram_value.h" | 22 #include "chrome/browser/extensions/extension_function_histogram_value.h" |
| 23 #include "chrome/browser/extensions/extension_icon_manager.h" | 23 #include "chrome/browser/extensions/extension_icon_manager.h" |
| 24 #include "chrome/browser/extensions/extension_prefs.h" | 24 #include "chrome/browser/extensions/extension_prefs.h" |
| 25 #include "chrome/browser/extensions/extension_sync_service.h" | 25 #include "chrome/browser/extensions/extension_sync_service.h" |
| 26 #include "chrome/browser/extensions/external_provider_interface.h" | 26 #include "chrome/browser/extensions/external_provider_interface.h" |
| 27 #include "chrome/browser/extensions/management_policy.h" | 27 #include "chrome/browser/extensions/management_policy.h" |
| 28 #include "chrome/browser/extensions/pending_enables.h" | 28 #include "chrome/browser/extensions/pending_enables.h" |
| 29 #include "chrome/browser/extensions/pending_extension_manager.h" | 29 #include "chrome/browser/extensions/pending_extension_manager.h" |
| 30 #include "chrome/browser/extensions/update_observer.h" | 30 #include "chrome/browser/extensions/update_observer.h" |
| 31 #include "chrome/common/extensions/extension.h" | |
| 32 #include "chrome/common/extensions/extension_constants.h" | 31 #include "chrome/common/extensions/extension_constants.h" |
| 33 #include "chrome/common/extensions/extension_set.h" | 32 #include "chrome/common/extensions/extension_set.h" |
| 34 #include "chrome/common/extensions/manifest_handlers/shared_module_info.h" | 33 #include "chrome/common/extensions/manifest_handlers/shared_module_info.h" |
| 35 #include "content/public/browser/devtools_agent_host.h" | 34 #include "content/public/browser/devtools_agent_host.h" |
| 36 #include "content/public/browser/notification_observer.h" | 35 #include "content/public/browser/notification_observer.h" |
| 37 #include "content/public/browser/notification_registrar.h" | 36 #include "content/public/browser/notification_registrar.h" |
| 38 #include "extensions/browser/process_manager.h" | 37 #include "extensions/browser/process_manager.h" |
| 39 #include "extensions/browser/process_map.h" | 38 #include "extensions/browser/process_map.h" |
| 40 #include "extensions/browser/quota_service.h" | 39 #include "extensions/browser/quota_service.h" |
| 40 #include "extensions/common/extension.h" |
| 41 #include "extensions/common/manifest.h" | 41 #include "extensions/common/manifest.h" |
| 42 #include "extensions/common/one_shot_event.h" | 42 #include "extensions/common/one_shot_event.h" |
| 43 | 43 |
| 44 class CommandLine; | 44 class CommandLine; |
| 45 class ExtensionErrorUI; | 45 class ExtensionErrorUI; |
| 46 class ExtensionToolbarModel; | 46 class ExtensionToolbarModel; |
| 47 class GURL; | 47 class GURL; |
| 48 class Profile; | 48 class Profile; |
| 49 | 49 |
| 50 namespace base { | 50 namespace base { |
| (...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 #endif | 849 #endif |
| 850 | 850 |
| 851 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 851 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 852 InstallAppsWithUnlimtedStorage); | 852 InstallAppsWithUnlimtedStorage); |
| 853 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 853 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 854 InstallAppsAndCheckStorageProtection); | 854 InstallAppsAndCheckStorageProtection); |
| 855 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 855 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 856 }; | 856 }; |
| 857 | 857 |
| 858 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 858 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |