| 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 17 matching lines...) Expand all Loading... |
| 28 #include "chrome/browser/extensions/extensions_quota_service.h" | 28 #include "chrome/browser/extensions/extensions_quota_service.h" |
| 29 #include "chrome/browser/extensions/external_provider_interface.h" | 29 #include "chrome/browser/extensions/external_provider_interface.h" |
| 30 #include "chrome/browser/extensions/management_policy.h" | 30 #include "chrome/browser/extensions/management_policy.h" |
| 31 #include "chrome/browser/extensions/menu_manager.h" | 31 #include "chrome/browser/extensions/menu_manager.h" |
| 32 #include "chrome/browser/extensions/pending_extension_manager.h" | 32 #include "chrome/browser/extensions/pending_extension_manager.h" |
| 33 #include "chrome/browser/extensions/process_map.h" | 33 #include "chrome/browser/extensions/process_map.h" |
| 34 #include "chrome/browser/extensions/update_observer.h" | 34 #include "chrome/browser/extensions/update_observer.h" |
| 35 #include "chrome/common/extensions/extension.h" | 35 #include "chrome/common/extensions/extension.h" |
| 36 #include "chrome/common/extensions/extension_constants.h" | 36 #include "chrome/common/extensions/extension_constants.h" |
| 37 #include "chrome/common/extensions/extension_set.h" | 37 #include "chrome/common/extensions/extension_set.h" |
| 38 #include "chrome/common/extensions/manifest.h" | |
| 39 #include "content/public/browser/devtools_agent_host.h" | 38 #include "content/public/browser/devtools_agent_host.h" |
| 40 #include "content/public/browser/notification_observer.h" | 39 #include "content/public/browser/notification_observer.h" |
| 41 #include "content/public/browser/notification_registrar.h" | 40 #include "content/public/browser/notification_registrar.h" |
| 41 #include "extensions/common/manifest.h" |
| 42 #include "extensions/common/one_shot_event.h" | 42 #include "extensions/common/one_shot_event.h" |
| 43 #include "sync/api/string_ordinal.h" | 43 #include "sync/api/string_ordinal.h" |
| 44 #include "sync/api/sync_change.h" | 44 #include "sync/api/sync_change.h" |
| 45 #include "sync/api/syncable_service.h" | 45 #include "sync/api/syncable_service.h" |
| 46 | 46 |
| 47 class CommandLine; | 47 class CommandLine; |
| 48 class ExtensionErrorUI; | 48 class ExtensionErrorUI; |
| 49 class ExtensionSyncData; | 49 class ExtensionSyncData; |
| 50 class ExtensionToolbarModel; | 50 class ExtensionToolbarModel; |
| 51 class GURL; | 51 class GURL; |
| (...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 syncer::SyncableService::StartSyncFlare flare_; | 961 syncer::SyncableService::StartSyncFlare flare_; |
| 962 | 962 |
| 963 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 963 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 964 InstallAppsWithUnlimtedStorage); | 964 InstallAppsWithUnlimtedStorage); |
| 965 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 965 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 966 InstallAppsAndCheckStorageProtection); | 966 InstallAppsAndCheckStorageProtection); |
| 967 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 967 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 968 }; | 968 }; |
| 969 | 969 |
| 970 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 970 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |