Chromium Code Reviews| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 #include "components/signin/core/common/signin_pref_names.h" | 76 #include "components/signin/core/common/signin_pref_names.h" |
| 77 #include "components/sync_driver/pref_names.h" | 77 #include "components/sync_driver/pref_names.h" |
| 78 #include "components/url_formatter/url_fixer.h" | 78 #include "components/url_formatter/url_fixer.h" |
| 79 #include "content/public/browser/browser_thread.h" | 79 #include "content/public/browser/browser_thread.h" |
| 80 #include "content/public/browser/host_zoom_map.h" | 80 #include "content/public/browser/host_zoom_map.h" |
| 81 #include "content/public/browser/notification_service.h" | 81 #include "content/public/browser/notification_service.h" |
| 82 #include "content/public/browser/resource_context.h" | 82 #include "content/public/browser/resource_context.h" |
| 83 #include "net/base/keygen_handler.h" | 83 #include "net/base/keygen_handler.h" |
| 84 #include "net/cert/cert_verifier.h" | 84 #include "net/cert/cert_verifier.h" |
| 85 #include "net/cert/ct_log_verifier.h" | 85 #include "net/cert/ct_log_verifier.h" |
| 86 #include "net/cert/ct_policy_enforcer.h" | |
|
mmenke
2016/06/17 20:01:43
Not needed?
| |
| 86 #include "net/cert/multi_log_ct_verifier.h" | 87 #include "net/cert/multi_log_ct_verifier.h" |
| 87 #include "net/cookies/canonical_cookie.h" | 88 #include "net/cookies/canonical_cookie.h" |
| 88 #include "net/http/http_network_session.h" | 89 #include "net/http/http_network_session.h" |
| 89 #include "net/http/http_transaction_factory.h" | 90 #include "net/http/http_transaction_factory.h" |
| 90 #include "net/http/http_util.h" | 91 #include "net/http/http_util.h" |
| 91 #include "net/http/transport_security_persister.h" | 92 #include "net/http/transport_security_persister.h" |
| 92 #include "net/nqe/network_quality_estimator.h" | 93 #include "net/nqe/network_quality_estimator.h" |
| 93 #include "net/proxy/proxy_config_service_fixed.h" | 94 #include "net/proxy/proxy_config_service_fixed.h" |
| 94 #include "net/proxy/proxy_script_fetcher_impl.h" | 95 #include "net/proxy/proxy_script_fetcher_impl.h" |
| 95 #include "net/proxy/proxy_service.h" | 96 #include "net/proxy/proxy_service.h" |
| (...skipping 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1355 void ProfileIOData::SetCookieSettingsForTesting( | 1356 void ProfileIOData::SetCookieSettingsForTesting( |
| 1356 content_settings::CookieSettings* cookie_settings) { | 1357 content_settings::CookieSettings* cookie_settings) { |
| 1357 DCHECK(!cookie_settings_.get()); | 1358 DCHECK(!cookie_settings_.get()); |
| 1358 cookie_settings_ = cookie_settings; | 1359 cookie_settings_ = cookie_settings; |
| 1359 } | 1360 } |
| 1360 | 1361 |
| 1361 policy::URLBlacklist::URLBlacklistState ProfileIOData::GetURLBlacklistState( | 1362 policy::URLBlacklist::URLBlacklistState ProfileIOData::GetURLBlacklistState( |
| 1362 const GURL& url) const { | 1363 const GURL& url) const { |
| 1363 return url_blacklist_manager_->GetURLBlacklistState(url); | 1364 return url_blacklist_manager_->GetURLBlacklistState(url); |
| 1364 } | 1365 } |
| OLD | NEW |