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/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 23 matching lines...) Expand all Loading... |
34 #include "chrome/browser/prefs/pref_service.h" | 34 #include "chrome/browser/prefs/pref_service.h" |
35 #include "chrome/browser/profiles/profile.h" | 35 #include "chrome/browser/profiles/profile.h" |
36 #include "chrome/browser/profiles/profile_manager.h" | 36 #include "chrome/browser/profiles/profile_manager.h" |
37 #include "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" | 37 #include "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" |
38 #include "chrome/common/chrome_notification_types.h" | 38 #include "chrome/common/chrome_notification_types.h" |
39 #include "chrome/common/chrome_switches.h" | 39 #include "chrome/common/chrome_switches.h" |
40 #include "chrome/common/pref_names.h" | 40 #include "chrome/common/pref_names.h" |
41 #include "chrome/common/url_constants.h" | 41 #include "chrome/common/url_constants.h" |
42 #include "content/browser/appcache/chrome_appcache_service.h" | 42 #include "content/browser/appcache/chrome_appcache_service.h" |
43 #include "content/browser/chrome_blob_storage_context.h" | 43 #include "content/browser/chrome_blob_storage_context.h" |
44 #include "content/browser/host_zoom_map.h" | |
45 #include "content/browser/renderer_host/media/media_stream_manager.h" | 44 #include "content/browser/renderer_host/media/media_stream_manager.h" |
46 #include "content/browser/renderer_host/resource_dispatcher_host.h" | 45 #include "content/browser/renderer_host/resource_dispatcher_host.h" |
47 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" | 46 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" |
48 #include "content/browser/resource_context.h" | 47 #include "content/browser/resource_context.h" |
49 #include "content/public/browser/browser_thread.h" | 48 #include "content/public/browser/browser_thread.h" |
| 49 #include "content/public/browser/host_zoom_map.h" |
50 #include "content/public/browser/notification_service.h" | 50 #include "content/public/browser/notification_service.h" |
51 #include "media/audio/audio_manager.h" | 51 #include "media/audio/audio_manager.h" |
52 #include "net/base/origin_bound_cert_service.h" | 52 #include "net/base/origin_bound_cert_service.h" |
53 #include "net/http/http_transaction_factory.h" | 53 #include "net/http/http_transaction_factory.h" |
54 #include "net/http/http_util.h" | 54 #include "net/http/http_util.h" |
55 #include "net/proxy/proxy_config_service_fixed.h" | 55 #include "net/proxy/proxy_config_service_fixed.h" |
56 #include "net/proxy/proxy_script_fetcher_impl.h" | 56 #include "net/proxy/proxy_script_fetcher_impl.h" |
57 #include "net/proxy/proxy_service.h" | 57 #include "net/proxy/proxy_service.h" |
58 #include "net/url_request/url_request.h" | 58 #include "net/url_request/url_request.h" |
59 #include "webkit/blob/blob_data.h" | 59 #include "webkit/blob/blob_data.h" |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 &resource_context_)); | 546 &resource_context_)); |
547 bool posted = BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); | 547 bool posted = BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); |
548 if (!posted) | 548 if (!posted) |
549 delete this; | 549 delete this; |
550 } | 550 } |
551 | 551 |
552 void ProfileIOData::set_origin_bound_cert_service( | 552 void ProfileIOData::set_origin_bound_cert_service( |
553 net::OriginBoundCertService* origin_bound_cert_service) const { | 553 net::OriginBoundCertService* origin_bound_cert_service) const { |
554 origin_bound_cert_service_.reset(origin_bound_cert_service); | 554 origin_bound_cert_service_.reset(origin_bound_cert_service); |
555 } | 555 } |
OLD | NEW |