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_TEST_EXTENSION_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/memory/scoped_vector.h" | |
10 #include "extensions/browser/extension_system.h" | 9 #include "extensions/browser/extension_system.h" |
11 #include "extensions/common/one_shot_event.h" | 10 #include "extensions/common/one_shot_event.h" |
12 | 11 |
13 class Profile; | 12 class Profile; |
14 class TestingValueStore; | 13 class TestingValueStore; |
15 | 14 |
16 namespace base { | 15 namespace base { |
17 class CommandLine; | 16 class CommandLine; |
18 class FilePath; | 17 class FilePath; |
19 } | 18 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 scoped_ptr<ExtensionService> extension_service_; | 82 scoped_ptr<ExtensionService> extension_service_; |
84 scoped_refptr<InfoMap> info_map_; | 83 scoped_refptr<InfoMap> info_map_; |
85 scoped_ptr<QuotaService> quota_service_; | 84 scoped_ptr<QuotaService> quota_service_; |
86 scoped_ptr<AppSorting> app_sorting_; | 85 scoped_ptr<AppSorting> app_sorting_; |
87 OneShotEvent ready_; | 86 OneShotEvent ready_; |
88 }; | 87 }; |
89 | 88 |
90 } // namespace extensions | 89 } // namespace extensions |
91 | 90 |
92 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 91 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
OLD | NEW |