| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 "ios/chrome/browser/browser_state/chrome_browser_state.h" | 5 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/sequenced_task_runner.h" | 11 #include "base/sequenced_task_runner.h" |
| 12 #include "components/prefs/json_pref_store.h" | 12 #include "components/prefs/json_pref_store.h" |
| 13 #include "components/sync_preferences/pref_service_syncable.h" | 13 #include "components/sync_preferences/pref_service_syncable.h" |
| 14 #include "ios/chrome/browser/chrome_url_constants.h" | 14 #include "ios/chrome/browser/chrome_url_constants.h" |
| 15 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" | 15 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" |
| 16 #include "ios/chrome/browser/net/net_types.h" | 16 #include "ios/chrome/browser/net/net_types.h" |
| 17 #include "ios/web/public/web_state/web_state.h" | 17 #include "ios/web/public/web_state/web_state.h" |
| 18 #include "ios/web/public/web_thread.h" | 18 #include "ios/web/public/web_thread.h" |
| 19 #include "ios/web/public/webui/web_ui_ios.h" | 19 #include "ios/web/public/webui/web_ui_ios.h" |
| 20 #include "ios/web/webui/url_data_manager_ios_backend.h" | 20 #include "ios/web/webui/url_data_manager_ios_backend.h" |
| 21 #include "net/url_request/url_request_interceptor.h" | 21 #include "net/url_request/url_request_interceptor.h" |
| 22 | 22 |
| 23 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 24 #error "This file requires ARC support." |
| 25 #endif |
| 26 |
| 23 namespace ios { | 27 namespace ios { |
| 24 | 28 |
| 25 ChromeBrowserState::ChromeBrowserState() {} | 29 ChromeBrowserState::ChromeBrowserState() {} |
| 26 | 30 |
| 27 ChromeBrowserState::~ChromeBrowserState() {} | 31 ChromeBrowserState::~ChromeBrowserState() {} |
| 28 | 32 |
| 29 // static | 33 // static |
| 30 ChromeBrowserState* ChromeBrowserState::FromBrowserState( | 34 ChromeBrowserState* ChromeBrowserState::FromBrowserState( |
| 31 web::BrowserState* browser_state) { | 35 web::BrowserState* browser_state) { |
| 32 // This is safe; this is the only implementation of BrowserState. | 36 // This is safe; this is the only implementation of BrowserState. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 web::URLDataManagerIOSBackend::CreateProtocolHandler(this) | 77 web::URLDataManagerIOSBackend::CreateProtocolHandler(this) |
| 74 .release()); | 78 .release()); |
| 75 URLRequestInterceptorScopedVector request_interceptors; | 79 URLRequestInterceptorScopedVector request_interceptors; |
| 76 request_context_getter_ = make_scoped_refptr(CreateRequestContext( | 80 request_context_getter_ = make_scoped_refptr(CreateRequestContext( |
| 77 &protocol_handlers, std::move(request_interceptors))); | 81 &protocol_handlers, std::move(request_interceptors))); |
| 78 } | 82 } |
| 79 return request_context_getter_.get(); | 83 return request_context_getter_.get(); |
| 80 } | 84 } |
| 81 | 85 |
| 82 } // namespace ios | 86 } // namespace ios |
| OLD | NEW |