Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(715)

Unified Diff: webkit/glue/resource_handle_impl.cc

Issue 48038: SSL Fix: Step 3.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/renderer_glue.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_handle_impl.cc
===================================================================
--- webkit/glue/resource_handle_impl.cc (revision 11701)
+++ webkit/glue/resource_handle_impl.cc (working copy)
@@ -416,10 +416,6 @@
if (origin_pid == 0)
origin_pid = base::GetCurrentProcId();
- bool mixed_content =
- webkit_glue::KURLToGURL(request_.mainDocumentURL()).SchemeIsSecure() &&
- !url.SchemeIsSecure();
-
if (url.SchemeIs("data")) {
if (sync_load_response) {
// This is a sync load. Do the work now.
@@ -452,8 +448,7 @@
webkit_glue::CStringToStdString(headerBuf.latin1()),
load_flags_,
origin_pid,
- FromTargetType(request_.targetType()),
- mixed_content));
+ FromTargetType(request_.targetType())));
if (!bridge_.get())
return false;
« no previous file with comments | « chrome/renderer/renderer_glue.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698