| 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/settings/settings_test_util.h" | 5 #include "chrome/browser/extensions/settings/settings_test_util.h" |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "chrome/common/extensions/extension.h" | 8 #include "chrome/common/extensions/extension.h" |
| 9 #include "chrome/browser/extensions/extension_system_factory.h" | 9 #include "chrome/browser/extensions/extension_system_factory.h" |
| 10 #include "chrome/browser/extensions/settings/settings_frontend.h" | 10 #include "chrome/browser/extensions/settings/settings_frontend.h" |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 MockExtensionSystem::MockExtensionSystem(Profile* profile) | 111 MockExtensionSystem::MockExtensionSystem(Profile* profile) |
| 112 : TestExtensionSystem(profile) {} | 112 : TestExtensionSystem(profile) {} |
| 113 MockExtensionSystem::~MockExtensionSystem() {} | 113 MockExtensionSystem::~MockExtensionSystem() {} |
| 114 | 114 |
| 115 EventRouter* MockExtensionSystem::event_router() { | 115 EventRouter* MockExtensionSystem::event_router() { |
| 116 if (!event_router_.get()) | 116 if (!event_router_.get()) |
| 117 event_router_.reset(new EventRouter(profile_, NULL)); | 117 event_router_.reset(new EventRouter(profile_, NULL)); |
| 118 return event_router_.get(); | 118 return event_router_.get(); |
| 119 } | 119 } |
| 120 | 120 |
| 121 ExtensionService* MockExtensionSystem::extension_service() { |
| 122 ExtensionServiceInterface* as_interface = |
| 123 static_cast<ExtensionServiceInterface*>(&extension_service_); |
| 124 return static_cast<ExtensionService*>(as_interface); |
| 125 } |
| 126 |
| 121 ProfileKeyedService* BuildMockExtensionSystem(Profile* profile) { | 127 ProfileKeyedService* BuildMockExtensionSystem(Profile* profile) { |
| 122 return new MockExtensionSystem(profile); | 128 return new MockExtensionSystem(profile); |
| 123 } | 129 } |
| 124 | 130 |
| 125 // MockProfile | 131 // MockProfile |
| 126 | 132 |
| 127 MockProfile::MockProfile(const FilePath& file_path) | 133 MockProfile::MockProfile(const FilePath& file_path) |
| 128 : TestingProfile(file_path) { | 134 : TestingProfile(file_path) { |
| 129 ExtensionSystemFactory::GetInstance()->SetTestingFactoryAndUse(this, | 135 ExtensionSystemFactory::GetInstance()->SetTestingFactoryAndUse(this, |
| 130 &BuildMockExtensionSystem); | 136 &BuildMockExtensionSystem); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 160 ValueStore* ScopedSettingsStorageFactory::Create( | 166 ValueStore* ScopedSettingsStorageFactory::Create( |
| 161 const FilePath& base_path, | 167 const FilePath& base_path, |
| 162 const std::string& extension_id) { | 168 const std::string& extension_id) { |
| 163 DCHECK(delegate_.get()); | 169 DCHECK(delegate_.get()); |
| 164 return delegate_->Create(base_path, extension_id); | 170 return delegate_->Create(base_path, extension_id); |
| 165 } | 171 } |
| 166 | 172 |
| 167 } // namespace settings_test_util | 173 } // namespace settings_test_util |
| 168 | 174 |
| 169 } // namespace extensions | 175 } // namespace extensions |
| OLD | NEW |