| 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> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 19 #include "base/prefs/pref_change_registrar.h" | 19 #include "base/prefs/pref_change_registrar.h" |
| 20 #include "base/strings/string16.h" | 20 #include "base/strings/string16.h" |
| 21 #include "chrome/browser/extensions/blacklist.h" | 21 #include "chrome/browser/extensions/blacklist.h" |
| 22 #include "chrome/browser/extensions/extension_sync_service.h" | |
| 23 #include "chrome/browser/extensions/pending_extension_manager.h" | 22 #include "chrome/browser/extensions/pending_extension_manager.h" |
| 24 #include "chrome/common/extensions/extension_constants.h" | 23 #include "chrome/common/extensions/extension_constants.h" |
| 25 #include "content/public/browser/devtools_agent_host.h" | 24 #include "content/public/browser/devtools_agent_host.h" |
| 26 #include "content/public/browser/notification_observer.h" | 25 #include "content/public/browser/notification_observer.h" |
| 27 #include "content/public/browser/notification_registrar.h" | 26 #include "content/public/browser/notification_registrar.h" |
| 28 #include "extensions/browser/extension_function_histogram_value.h" | 27 #include "extensions/browser/extension_function_histogram_value.h" |
| 29 #include "extensions/browser/extension_prefs.h" | 28 #include "extensions/browser/extension_prefs.h" |
| 30 #include "extensions/browser/external_provider_interface.h" | 29 #include "extensions/browser/external_provider_interface.h" |
| 31 #include "extensions/browser/management_policy.h" | 30 #include "extensions/browser/management_policy.h" |
| 32 #include "extensions/browser/process_manager.h" | 31 #include "extensions/browser/process_manager.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 56 class ExtensionSystem; | 55 class ExtensionSystem; |
| 57 class ExtensionUpdater; | 56 class ExtensionUpdater; |
| 58 class PendingExtensionManager; | 57 class PendingExtensionManager; |
| 59 class RendererStartupHelper; | 58 class RendererStartupHelper; |
| 60 class UpdateObserver; | 59 class UpdateObserver; |
| 61 } // namespace extensions | 60 } // namespace extensions |
| 62 | 61 |
| 63 using extensions::ExtensionIdSet; | 62 using extensions::ExtensionIdSet; |
| 64 | 63 |
| 65 namespace syncer { | 64 namespace syncer { |
| 65 class ExtensionSyncService; |
| 66 class SyncErrorFactory; | 66 class SyncErrorFactory; |
| 67 } | 67 } |
| 68 | 68 |
| 69 // This is an interface class to encapsulate the dependencies that | 69 // This is an interface class to encapsulate the dependencies that |
| 70 // various classes have on ExtensionService. This allows easy mocking. | 70 // various classes have on ExtensionService. This allows easy mocking. |
| 71 class ExtensionServiceInterface | 71 class ExtensionServiceInterface |
| 72 : public base::SupportsWeakPtr<ExtensionServiceInterface> { | 72 : public base::SupportsWeakPtr<ExtensionServiceInterface> { |
| 73 public: | 73 public: |
| 74 virtual ~ExtensionServiceInterface() {} | 74 virtual ~ExtensionServiceInterface() {} |
| 75 | 75 |
| (...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 835 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 836 GreylistedExtensionDisabled); | 836 GreylistedExtensionDisabled); |
| 837 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 837 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 838 GreylistDontEnableManuallyDisabled); | 838 GreylistDontEnableManuallyDisabled); |
| 839 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 839 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 840 GreylistUnknownDontChange); | 840 GreylistUnknownDontChange); |
| 841 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 841 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 842 }; | 842 }; |
| 843 | 843 |
| 844 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 844 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |