Chromium Code Reviews| 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" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
| 16 #include "base/task.h" | 16 #include "base/task.h" |
| 17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/chrome_plugin_service_filter.h" | |
|
willchan no longer on Chromium
2011/09/01 23:34:44
Remove
Bernhard Bauer
2011/09/02 08:41:48
Done.
| |
| 18 #include "chrome/browser/content_settings/host_content_settings_map.h" | 19 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 19 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 20 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 20 #include "chrome/browser/extensions/extension_info_map.h" | 21 #include "chrome/browser/extensions/extension_info_map.h" |
| 21 #include "chrome/browser/extensions/extension_protocols.h" | 22 #include "chrome/browser/extensions/extension_protocols.h" |
| 22 #include "chrome/browser/io_thread.h" | 23 #include "chrome/browser/io_thread.h" |
| 23 #include "chrome/browser/media/media_internals.h" | 24 #include "chrome/browser/media/media_internals.h" |
| 24 #include "chrome/browser/net/chrome_cookie_notification_details.h" | 25 #include "chrome/browser/net/chrome_cookie_notification_details.h" |
| 25 #include "chrome/browser/net/chrome_dns_cert_provenance_checker_factory.h" | 26 #include "chrome/browser/net/chrome_dns_cert_provenance_checker_factory.h" |
| 26 #include "chrome/browser/net/chrome_net_log.h" | 27 #include "chrome/browser/net/chrome_net_log.h" |
| 27 #include "chrome/browser/net/chrome_network_delegate.h" | 28 #include "chrome/browser/net/chrome_network_delegate.h" |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 518 bool posted = BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, | 519 bool posted = BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, |
| 519 new DeleteTask<ProfileIOData>(this)); | 520 new DeleteTask<ProfileIOData>(this)); |
| 520 if (!posted) | 521 if (!posted) |
| 521 delete this; | 522 delete this; |
| 522 } | 523 } |
| 523 | 524 |
| 524 void ProfileIOData::set_origin_bound_cert_service( | 525 void ProfileIOData::set_origin_bound_cert_service( |
| 525 net::OriginBoundCertService* origin_bound_cert_service) const { | 526 net::OriginBoundCertService* origin_bound_cert_service) const { |
| 526 origin_bound_cert_service_.reset(origin_bound_cert_service); | 527 origin_bound_cert_service_.reset(origin_bound_cert_service); |
| 527 } | 528 } |
| OLD | NEW |