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 |
29 namespace { | 30 namespace { |
30 | 31 |
31 // Mock ExtensionPrefs class with artificial clock to guarantee that no two | 32 // Mock ExtensionPrefs class with artificial clock to guarantee that no two |
32 // extensions get the same installation time stamp and we can reliably | 33 // extensions get the same installation time stamp and we can reliably |
33 // assert the installation order in the tests below. | 34 // assert the installation order in the tests below. |
34 class MockExtensionPrefs : public ExtensionPrefs { | 35 class MockExtensionPrefs : public ExtensionPrefs { |
35 public: | 36 public: |
36 MockExtensionPrefs(PrefService* prefs, | 37 MockExtensionPrefs(PrefService* prefs, |
37 const FilePath& root_dir, | 38 const FilePath& root_dir, |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 } | 155 } |
155 | 156 |
156 PrefService* TestExtensionPrefs::CreateIncognitoPrefService() const { | 157 PrefService* TestExtensionPrefs::CreateIncognitoPrefService() const { |
157 return pref_service_->CreateIncognitoPrefService( | 158 return pref_service_->CreateIncognitoPrefService( |
158 new ExtensionPrefStore(extension_pref_value_map_.get(), true)); | 159 new ExtensionPrefStore(extension_pref_value_map_.get(), true)); |
159 } | 160 } |
160 | 161 |
161 void TestExtensionPrefs::set_extensions_disabled(bool extensions_disabled) { | 162 void TestExtensionPrefs::set_extensions_disabled(bool extensions_disabled) { |
162 extensions_disabled_ = extensions_disabled; | 163 extensions_disabled_ = extensions_disabled; |
163 } | 164 } |
OLD | NEW |