OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_co
ntext.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "components/syncable_prefs/pref_service_syncable.h" |
| 9 #include "ios/web/public/web_thread.h" |
| 10 #include "net/url_request/url_request_test_util.h" |
| 11 |
| 12 TestChromeBrowserStateWithIsolatedContext:: |
| 13 TestChromeBrowserStateWithIsolatedContext() |
| 14 : TestChromeBrowserState(base::FilePath(), |
| 15 scoped_ptr<syncable_prefs::PrefServiceSyncable>(), |
| 16 TestingFactories(), |
| 17 RefcountedTestingFactories()), |
| 18 main_context_called_(false), |
| 19 request_context_(new net::TestURLRequestContextGetter( |
| 20 web::WebThread::GetTaskRunnerForThread(web::WebThread::IO))) {} |
| 21 |
| 22 TestChromeBrowserStateWithIsolatedContext:: |
| 23 ~TestChromeBrowserStateWithIsolatedContext() {} |
| 24 |
| 25 bool TestChromeBrowserStateWithIsolatedContext::MainContextCalled() const { |
| 26 return main_context_called_; |
| 27 } |
| 28 |
| 29 IOSWebViewFactoryExternalService |
| 30 TestChromeBrowserStateWithIsolatedContext::SharingService() { |
| 31 return SSO_AUTHENTICATION; |
| 32 } |
| 33 |
| 34 net::URLRequestContextGetter* |
| 35 TestChromeBrowserStateWithIsolatedContext::GetRequestContext() { |
| 36 main_context_called_ = true; |
| 37 return TestChromeBrowserState::GetRequestContext(); |
| 38 } |
| 39 |
| 40 net::URLRequestContextGetter* |
| 41 TestChromeBrowserStateWithIsolatedContext::CreateIsolatedRequestContext( |
| 42 const base::FilePath& partition_path) { |
| 43 return request_context_.get(); |
| 44 } |
OLD | NEW |