| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/profile_io_data.h" | 5 #include "chrome/browser/profiles/profile_io_data.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" | 38 #include "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" |
| 39 #include "chrome/common/chrome_notification_types.h" | 39 #include "chrome/common/chrome_notification_types.h" |
| 40 #include "chrome/common/chrome_switches.h" | 40 #include "chrome/common/chrome_switches.h" |
| 41 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
| 42 #include "chrome/common/url_constants.h" | 42 #include "chrome/common/url_constants.h" |
| 43 #include "content/browser/appcache/chrome_appcache_service.h" | 43 #include "content/browser/appcache/chrome_appcache_service.h" |
| 44 #include "content/browser/chrome_blob_storage_context.h" | 44 #include "content/browser/chrome_blob_storage_context.h" |
| 45 #include "content/browser/renderer_host/media/media_stream_manager.h" | 45 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 46 #include "content/browser/renderer_host/resource_dispatcher_host.h" | 46 #include "content/browser/renderer_host/resource_dispatcher_host.h" |
| 47 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" | 47 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" |
| 48 #include "content/browser/resource_context.h" | |
| 49 #include "content/public/browser/browser_thread.h" | 48 #include "content/public/browser/browser_thread.h" |
| 50 #include "content/public/browser/host_zoom_map.h" | 49 #include "content/public/browser/host_zoom_map.h" |
| 51 #include "content/public/browser/notification_service.h" | 50 #include "content/public/browser/notification_service.h" |
| 51 #include "content/public/browser/resource_context.h" |
| 52 #include "media/audio/audio_manager.h" | 52 #include "media/audio/audio_manager.h" |
| 53 #include "net/base/origin_bound_cert_service.h" | 53 #include "net/base/origin_bound_cert_service.h" |
| 54 #include "net/http/http_transaction_factory.h" | 54 #include "net/http/http_transaction_factory.h" |
| 55 #include "net/http/http_util.h" | 55 #include "net/http/http_util.h" |
| 56 #include "net/proxy/proxy_config_service_fixed.h" | 56 #include "net/proxy/proxy_config_service_fixed.h" |
| 57 #include "net/proxy/proxy_script_fetcher_impl.h" | 57 #include "net/proxy/proxy_script_fetcher_impl.h" |
| 58 #include "net/proxy/proxy_service.h" | 58 #include "net/proxy/proxy_service.h" |
| 59 #include "net/url_request/url_request.h" | 59 #include "net/url_request/url_request.h" |
| 60 #include "webkit/blob/blob_data.h" | 60 #include "webkit/blob/blob_data.h" |
| 61 #include "webkit/blob/blob_url_request_job_factory.h" | 61 #include "webkit/blob/blob_url_request_job_factory.h" |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 &resource_context_)); | 625 &resource_context_)); |
| 626 bool posted = BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); | 626 bool posted = BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); |
| 627 if (!posted) | 627 if (!posted) |
| 628 delete this; | 628 delete this; |
| 629 } | 629 } |
| 630 | 630 |
| 631 void ProfileIOData::set_origin_bound_cert_service( | 631 void ProfileIOData::set_origin_bound_cert_service( |
| 632 net::OriginBoundCertService* origin_bound_cert_service) const { | 632 net::OriginBoundCertService* origin_bound_cert_service) const { |
| 633 origin_bound_cert_service_.reset(origin_bound_cert_service); | 633 origin_bound_cert_service_.reset(origin_bound_cert_service); |
| 634 } | 634 } |
| OLD | NEW |