| 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 "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
| 22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
| 23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
| 24 #include "components/net_log/chrome_net_log.h" | 24 #include "components/net_log/chrome_net_log.h" |
| 25 #include "content/public/browser/browser_thread.h" | 25 #include "content/public/browser/browser_thread.h" |
| 26 #include "content/public/browser/cookie_store_factory.h" | 26 #include "content/public/browser/cookie_store_factory.h" |
| 27 #include "content/public/browser/resource_context.h" | 27 #include "content/public/browser/resource_context.h" |
| 28 #include "extensions/common/constants.h" | 28 #include "extensions/common/constants.h" |
| 29 #include "net/base/sdch_manager.h" | 29 #include "net/base/sdch_manager.h" |
| 30 #include "net/ftp/ftp_network_layer.h" | 30 #include "net/ftp/ftp_network_layer.h" |
| 31 #include "net/http/http_auth_handler_factory.h" |
| 31 #include "net/http/http_cache.h" | 32 #include "net/http/http_cache.h" |
| 32 #include "net/http/http_network_session.h" | 33 #include "net/http/http_network_session.h" |
| 33 #include "net/http/http_server_properties_impl.h" | 34 #include "net/http/http_server_properties_impl.h" |
| 34 #include "net/sdch/sdch_owner.h" | 35 #include "net/sdch/sdch_owner.h" |
| 35 #include "net/ssl/channel_id_service.h" | 36 #include "net/ssl/channel_id_service.h" |
| 36 #include "net/ssl/default_channel_id_store.h" | 37 #include "net/ssl/default_channel_id_store.h" |
| 37 #include "net/url_request/url_request_job_factory_impl.h" | 38 #include "net/url_request/url_request_job_factory_impl.h" |
| 38 #include "storage/browser/database/database_tracker.h" | 39 #include "storage/browser/database/database_tracker.h" |
| 39 | 40 |
| 40 #if defined(ENABLE_EXTENSIONS) | 41 #if defined(ENABLE_EXTENSIONS) |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 return app_request_context; | 399 return app_request_context; |
| 399 } | 400 } |
| 400 | 401 |
| 401 net::URLRequestContext* | 402 net::URLRequestContext* |
| 402 OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext( | 403 OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext( |
| 403 net::URLRequestContext* app_context, | 404 net::URLRequestContext* app_context, |
| 404 const StoragePartitionDescriptor& partition_descriptor) const { | 405 const StoragePartitionDescriptor& partition_descriptor) const { |
| 405 NOTREACHED(); | 406 NOTREACHED(); |
| 406 return NULL; | 407 return NULL; |
| 407 } | 408 } |
| OLD | NEW |