| 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/profiles/off_the_record_profile_io_data.h" | 5 #include "chrome/browser/profiles/off_the_record_profile_io_data.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/prefs/pref_service.h" | |
| 14 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 15 #include "base/threading/worker_pool.h" | 14 #include "base/threading/worker_pool.h" |
| 16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 17 #include "chrome/browser/browser_process.h" | 16 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 17 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 19 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" | 18 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" |
| 20 #include "chrome/browser/io_thread.h" | 19 #include "chrome/browser/io_thread.h" |
| 21 #include "chrome/browser/net/chrome_network_delegate.h" | 20 #include "chrome/browser/net/chrome_network_delegate.h" |
| 22 #include "chrome/browser/net/chrome_url_request_context_getter.h" | 21 #include "chrome/browser/net/chrome_url_request_context_getter.h" |
| 23 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
| 24 #include "chrome/common/chrome_switches.h" | 23 #include "chrome/common/chrome_switches.h" |
| 25 #include "chrome/common/pref_names.h" | 24 #include "chrome/common/pref_names.h" |
| 26 #include "chrome/common/url_constants.h" | 25 #include "chrome/common/url_constants.h" |
| 27 #include "components/net_log/chrome_net_log.h" | 26 #include "components/net_log/chrome_net_log.h" |
| 27 #include "components/prefs/pref_service.h" |
| 28 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| 29 #include "content/public/browser/cookie_store_factory.h" | 29 #include "content/public/browser/cookie_store_factory.h" |
| 30 #include "content/public/browser/resource_context.h" | 30 #include "content/public/browser/resource_context.h" |
| 31 #include "extensions/common/constants.h" | 31 #include "extensions/common/constants.h" |
| 32 #include "net/base/sdch_manager.h" | 32 #include "net/base/sdch_manager.h" |
| 33 #include "net/ftp/ftp_network_layer.h" | 33 #include "net/ftp/ftp_network_layer.h" |
| 34 #include "net/http/http_cache.h" | 34 #include "net/http/http_cache.h" |
| 35 #include "net/http/http_network_session.h" | 35 #include "net/http/http_network_session.h" |
| 36 #include "net/http/http_server_properties_impl.h" | 36 #include "net/http/http_server_properties_impl.h" |
| 37 #include "net/sdch/sdch_owner.h" | 37 #include "net/sdch/sdch_owner.h" |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 return app_request_context; | 386 return app_request_context; |
| 387 } | 387 } |
| 388 | 388 |
| 389 net::URLRequestContext* | 389 net::URLRequestContext* |
| 390 OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext( | 390 OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext( |
| 391 net::URLRequestContext* app_context, | 391 net::URLRequestContext* app_context, |
| 392 const StoragePartitionDescriptor& partition_descriptor) const { | 392 const StoragePartitionDescriptor& partition_descriptor) const { |
| 393 NOTREACHED(); | 393 NOTREACHED(); |
| 394 return NULL; | 394 return NULL; |
| 395 } | 395 } |
| OLD | NEW |