| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/off_the_record_chrome_browser_state_i
o_data.h" | 5 #include "ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_i
o_data.h" |
| 6 | 6 |
| 7 #import <UIKit/UIkit.h> | 7 #import <UIKit/UIkit.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/mac/bind_objc_block.h" | 14 #include "base/mac/bind_objc_block.h" |
| 15 #include "base/prefs/pref_service.h" |
| 15 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
| 16 #include "base/threading/worker_pool.h" | 17 #include "base/threading/worker_pool.h" |
| 17 #include "components/net_log/chrome_net_log.h" | 18 #include "components/net_log/chrome_net_log.h" |
| 18 #include "components/prefs/pref_service.h" | |
| 19 #include "ios/chrome/browser/chrome_constants.h" | 19 #include "ios/chrome/browser/chrome_constants.h" |
| 20 #include "ios/chrome/browser/ios_chrome_io_thread.h" | 20 #include "ios/chrome/browser/ios_chrome_io_thread.h" |
| 21 #include "ios/chrome/browser/net/cookie_util.h" | 21 #include "ios/chrome/browser/net/cookie_util.h" |
| 22 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" | 22 #include "ios/chrome/browser/net/ios_chrome_network_delegate.h" |
| 23 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" | 23 #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" |
| 24 #include "ios/chrome/browser/pref_names.h" | 24 #include "ios/chrome/browser/pref_names.h" |
| 25 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | 25 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" |
| 26 #include "ios/web/public/web_thread.h" | 26 #include "ios/web/public/web_thread.h" |
| 27 #include "net/base/sdch_manager.h" | 27 #include "net/base/sdch_manager.h" |
| 28 #include "net/disk_cache/disk_cache.h" | 28 #include "net/disk_cache/disk_cache.h" |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 NOTREACHED(); | 230 NOTREACHED(); |
| 231 return nullptr; | 231 return nullptr; |
| 232 } | 232 } |
| 233 | 233 |
| 234 net::URLRequestContext* | 234 net::URLRequestContext* |
| 235 OffTheRecordChromeBrowserStateIOData::AcquireIsolatedAppRequestContext( | 235 OffTheRecordChromeBrowserStateIOData::AcquireIsolatedAppRequestContext( |
| 236 net::URLRequestContext* main_context) const { | 236 net::URLRequestContext* main_context) const { |
| 237 NOTREACHED(); | 237 NOTREACHED(); |
| 238 return nullptr; | 238 return nullptr; |
| 239 } | 239 } |
| OLD | NEW |