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 #include "chrome/browser/extensions/test_extension_prefs.h" | 5 #include "chrome/browser/extensions/test_extension_prefs.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "base/message_loop_proxy.h" | 12 #include "base/message_loop_proxy.h" |
13 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "chrome/browser/extensions/extension_pref_store.h" | 15 #include "chrome/browser/extensions/extension_pref_store.h" |
16 #include "chrome/browser/extensions/extension_pref_value_map.h" | 16 #include "chrome/browser/extensions/extension_pref_value_map.h" |
17 #include "chrome/browser/extensions/extension_prefs.h" | 17 #include "chrome/browser/extensions/extension_prefs.h" |
18 #include "chrome/browser/prefs/pref_service.h" | 18 #include "chrome/browser/prefs/pref_service.h" |
19 #include "chrome/browser/prefs/pref_service_mock_builder.h" | 19 #include "chrome/browser/prefs/pref_service_mock_builder.h" |
20 #include "chrome/browser/prefs/pref_value_store.h" | 20 #include "chrome/browser/prefs/pref_value_store.h" |
21 #include "chrome/common/extensions/extension.h" | 21 #include "chrome/common/extensions/extension.h" |
22 #include "chrome/common/extensions/extension_manifest_constants.h" | 22 #include "chrome/common/extensions/extension_manifest_constants.h" |
23 #include "chrome/common/json_pref_store.h" | 23 #include "chrome/common/json_pref_store.h" |
24 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
26 | 26 |
27 using content::BrowserThread; | 27 using content::BrowserThread; |
28 using extensions::Extension; | 28 |
| 29 namespace extensions { |
29 | 30 |
30 namespace { | 31 namespace { |
31 | 32 |
32 // Mock ExtensionPrefs class with artificial clock to guarantee that no two | 33 // Mock ExtensionPrefs class with artificial clock to guarantee that no two |
33 // extensions get the same installation time stamp and we can reliably | 34 // extensions get the same installation time stamp and we can reliably |
34 // assert the installation order in the tests below. | 35 // assert the installation order in the tests below. |
35 class MockExtensionPrefs : public ExtensionPrefs { | 36 class MockExtensionPrefs : public ExtensionPrefs { |
36 public: | 37 public: |
37 MockExtensionPrefs(PrefService* prefs, | 38 MockExtensionPrefs(PrefService* prefs, |
38 const FilePath& root_dir, | 39 const FilePath& root_dir, |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 } | 156 } |
156 | 157 |
157 PrefService* TestExtensionPrefs::CreateIncognitoPrefService() const { | 158 PrefService* TestExtensionPrefs::CreateIncognitoPrefService() const { |
158 return pref_service_->CreateIncognitoPrefService( | 159 return pref_service_->CreateIncognitoPrefService( |
159 new ExtensionPrefStore(extension_pref_value_map_.get(), true)); | 160 new ExtensionPrefStore(extension_pref_value_map_.get(), true)); |
160 } | 161 } |
161 | 162 |
162 void TestExtensionPrefs::set_extensions_disabled(bool extensions_disabled) { | 163 void TestExtensionPrefs::set_extensions_disabled(bool extensions_disabled) { |
163 extensions_disabled_ = extensions_disabled; | 164 extensions_disabled_ = extensions_disabled; |
164 } | 165 } |
| 166 |
| 167 } // namespace extensions |
OLD | NEW |