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

Unified Diff: Source/modules/websockets/NewWebSocketChannelImpl.cpp

Issue 566533003: Mixed Content: Make MixedContentChecker completely static. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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
Index: Source/modules/websockets/NewWebSocketChannelImpl.cpp
diff --git a/Source/modules/websockets/NewWebSocketChannelImpl.cpp b/Source/modules/websockets/NewWebSocketChannelImpl.cpp
index 60a2766ee8d81f430a05ab226571fe86060ebe95..a8afbd5e231569e43fe9fd3bbf891d72140705e8 100644
--- a/Source/modules/websockets/NewWebSocketChannelImpl.cpp
+++ b/Source/modules/websockets/NewWebSocketChannelImpl.cpp
@@ -136,7 +136,7 @@ bool NewWebSocketChannelImpl::connect(const KURL& url, const String& protocol)
return false;
if (executionContext()->isDocument() && document()->frame()) {
- if (!document()->frame()->loader().mixedContentChecker()->canConnectInsecureWebSocket(document()->securityOrigin(), url))
+ if (MixedContentChecker::shouldBlockWebSocket(document()->frame(), url))
return false;
}
if (MixedContentChecker::isMixedContent(document()->securityOrigin(), url)) {

Powered by Google App Engine
This is Rietveld 408576698