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/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
17 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
20 #include "base/string16.h" | 20 #include "base/string16.h" |
21 #include "base/time.h" | |
22 #include "base/tuple.h" | 21 #include "base/tuple.h" |
23 #include "chrome/browser/api/prefs/pref_change_registrar.h" | 22 #include "chrome/browser/api/prefs/pref_change_registrar.h" |
24 #include "chrome/browser/extensions/app_shortcut_manager.h" | 23 #include "chrome/browser/extensions/app_shortcut_manager.h" |
25 #include "chrome/browser/extensions/app_sync_bundle.h" | 24 #include "chrome/browser/extensions/app_sync_bundle.h" |
26 #include "chrome/browser/extensions/extension_icon_manager.h" | 25 #include "chrome/browser/extensions/extension_icon_manager.h" |
27 #include "chrome/browser/extensions/extension_prefs.h" | 26 #include "chrome/browser/extensions/extension_prefs.h" |
28 #include "chrome/browser/extensions/extension_process_manager.h" | 27 #include "chrome/browser/extensions/extension_process_manager.h" |
29 #include "chrome/browser/extensions/extension_sync_bundle.h" | 28 #include "chrome/browser/extensions/extension_sync_bundle.h" |
30 #include "chrome/browser/extensions/extension_toolbar_model.h" | 29 #include "chrome/browser/extensions/extension_toolbar_model.h" |
31 #include "chrome/browser/extensions/extension_warning_set.h" | 30 #include "chrome/browser/extensions/extension_warning_set.h" |
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 #endif | 888 #endif |
890 | 889 |
891 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 890 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
892 InstallAppsWithUnlimtedStorage); | 891 InstallAppsWithUnlimtedStorage); |
893 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 892 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
894 InstallAppsAndCheckStorageProtection); | 893 InstallAppsAndCheckStorageProtection); |
895 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 894 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
896 }; | 895 }; |
897 | 896 |
898 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 897 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |