OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading | 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading |
6 | 6 |
7 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" | 7 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 } | 1071 } |
1072 | 1072 |
1073 void ResourceDispatcherHost::OnSSLCertificateError( | 1073 void ResourceDispatcherHost::OnSSLCertificateError( |
1074 URLRequest* request, | 1074 URLRequest* request, |
1075 int cert_error, | 1075 int cert_error, |
1076 net::X509Certificate* cert) { | 1076 net::X509Certificate* cert) { |
1077 DCHECK(request); | 1077 DCHECK(request); |
1078 SSLManager::OnSSLCertificateError(this, request, cert_error, cert); | 1078 SSLManager::OnSSLCertificateError(this, request, cert_error, cert); |
1079 } | 1079 } |
1080 | 1080 |
| 1081 void ResourceDispatcherHost::OnGetCookies( |
| 1082 URLRequest* request, |
| 1083 const net::CookieMonster::CookieList& cookie_list, |
| 1084 bool blocked_by_policy) { |
| 1085 VLOG(1) << "OnGetCookies: " << request->url().spec(); |
| 1086 |
| 1087 int render_process_id, render_view_id; |
| 1088 if (!RenderViewForRequest(request, &render_process_id, &render_view_id)) |
| 1089 return; |
| 1090 |
| 1091 CallRenderViewHostContentSettingsDelegate( |
| 1092 render_process_id, render_view_id, |
| 1093 &RenderViewHostDelegate::ContentSettings::OnCookiesRead, |
| 1094 request->url(), cookie_list, blocked_by_policy); |
| 1095 } |
| 1096 |
1081 void ResourceDispatcherHost::OnSetCookie(URLRequest* request, | 1097 void ResourceDispatcherHost::OnSetCookie(URLRequest* request, |
1082 const std::string& cookie_line, | 1098 const std::string& cookie_line, |
1083 bool blocked_by_policy) { | 1099 bool blocked_by_policy) { |
1084 VLOG(1) << "OnSetCookie: " << request->url().spec(); | 1100 VLOG(1) << "OnSetCookie: " << request->url().spec(); |
1085 | 1101 |
1086 int render_process_id, render_view_id; | 1102 int render_process_id, render_view_id; |
1087 if (!RenderViewForRequest(request, &render_process_id, &render_view_id)) | 1103 if (!RenderViewForRequest(request, &render_process_id, &render_view_id)) |
1088 return; | 1104 return; |
1089 | 1105 |
1090 CallRenderViewHostContentSettingsDelegate( | 1106 CallRenderViewHostContentSettingsDelegate( |
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1931 return is_prefetch_enabled_; | 1947 return is_prefetch_enabled_; |
1932 } | 1948 } |
1933 | 1949 |
1934 // static | 1950 // static |
1935 void ResourceDispatcherHost::set_is_prefetch_enabled(bool value) { | 1951 void ResourceDispatcherHost::set_is_prefetch_enabled(bool value) { |
1936 is_prefetch_enabled_ = value; | 1952 is_prefetch_enabled_ = value; |
1937 } | 1953 } |
1938 | 1954 |
1939 // static | 1955 // static |
1940 bool ResourceDispatcherHost::is_prefetch_enabled_ = false; | 1956 bool ResourceDispatcherHost::is_prefetch_enabled_ = false; |
OLD | NEW |