OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
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/command_line.h" |
14 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
15 #include "base/command_line.h" | |
16 #include "base/file_path.h" | 16 #include "base/file_path.h" |
17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
18 #include "base/memory/linked_ptr.h" | 18 #include "base/memory/linked_ptr.h" |
19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
20 #include "base/memory/weak_ptr.h" | 20 #include "base/memory/weak_ptr.h" |
21 #include "base/task.h" | 21 #include "base/task.h" |
22 #include "base/time.h" | 22 #include "base/time.h" |
23 #include "base/tuple.h" | 23 #include "base/tuple.h" |
24 #include "chrome/browser/extensions/apps_promo.h" | 24 #include "chrome/browser/extensions/apps_promo.h" |
25 #include "chrome/browser/extensions/extension_icon_manager.h" | 25 #include "chrome/browser/extensions/extension_icon_manager.h" |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 friend class ExtensionServiceBackend; | 692 friend class ExtensionServiceBackend; |
693 | 693 |
694 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 694 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
695 InstallAppsWithUnlimtedStorage); | 695 InstallAppsWithUnlimtedStorage); |
696 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 696 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
697 InstallAppsAndCheckStorageProtection); | 697 InstallAppsAndCheckStorageProtection); |
698 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 698 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
699 }; | 699 }; |
700 | 700 |
701 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 701 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |