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

Unified Diff: Source/core/loader/MixedContentChecker.h

Issue 356843006: Add "lax mixed content checking" runtime flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test. Created 6 years, 6 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/core/loader/MixedContentChecker.h
diff --git a/Source/core/loader/MixedContentChecker.h b/Source/core/loader/MixedContentChecker.h
index e749b679e60fa262a7aa86fec1c397da4e6ec4fd..07b0f70f0e5b2b1136b7eeccd182485d2f691898 100644
--- a/Source/core/loader/MixedContentChecker.h
+++ b/Source/core/loader/MixedContentChecker.h
@@ -58,10 +58,8 @@ public:
{
return canRunInsecureContentInternal(securityOrigin, url, MixedContentChecker::Execution);
}
- bool canConnectInsecureWebSocket(SecurityOrigin* securityOrigin, const KURL& url) const
- {
- return canRunInsecureContentInternal(securityOrigin, url, MixedContentChecker::WebSocket);
- }
+
+ bool canConnectInsecureWebSocket(SecurityOrigin*, const KURL&) const;
static bool isMixedContent(SecurityOrigin*, const KURL&);
private:

Powered by Google App Engine
This is Rietveld 408576698