Chromium Code Reviews| Index: Source/core/loader/MixedContentChecker.h |
| diff --git a/Source/core/loader/MixedContentChecker.h b/Source/core/loader/MixedContentChecker.h |
| index b4eb49a7585b5678ddcab791421c72a1f848fd1f..e749b679e60fa262a7aa86fec1c397da4e6ec4fd 100644 |
| --- a/Source/core/loader/MixedContentChecker.h |
| +++ b/Source/core/loader/MixedContentChecker.h |
| @@ -45,24 +45,41 @@ class MixedContentChecker { |
| public: |
| MixedContentChecker(LocalFrame*); |
| - bool canDisplayInsecureContent(SecurityOrigin*, const KURL&) const; |
| + bool canDisplayInsecureContent(SecurityOrigin* securityOrigin, const KURL& url) const |
| + { |
| + return canDisplayInsecureContentInternal(securityOrigin, url, MixedContentChecker::Display); |
| + } |
| + bool canSubmitToInsecureForm(SecurityOrigin* securityOrigin, const KURL& url) const |
| + { |
| + return canDisplayInsecureContentInternal(securityOrigin, url, MixedContentChecker::Submission); |
| + } |
| + |
| bool canRunInsecureContent(SecurityOrigin* securityOrigin, const KURL& url) const |
| { |
| - return canRunInsecureContentInternal(securityOrigin, url, false); |
| + return canRunInsecureContentInternal(securityOrigin, url, MixedContentChecker::Execution); |
| } |
| bool canConnectInsecureWebSocket(SecurityOrigin* securityOrigin, const KURL& url) const |
| { |
| - return canRunInsecureContentInternal(securityOrigin, url, true); |
| + return canRunInsecureContentInternal(securityOrigin, url, MixedContentChecker::WebSocket); |
| } |
| static bool isMixedContent(SecurityOrigin*, const KURL&); |
| private: |
| + enum MixedContentType { |
| + Display, |
|
jww
2014/06/06 19:19:52
Style: Individual enum cases should be all caps (s
jww
2014/06/06 19:24:50
Scratch that; I'm getting my style guides confused
|
| + Execution, |
| + WebSocket, |
| + Submission |
| + }; |
| + |
| // FIXME: This should probably have a separate client from FrameLoader. |
| FrameLoaderClient* client() const; |
| - bool canRunInsecureContentInternal(SecurityOrigin*, const KURL&, bool isWebSocket) const; |
| + bool canDisplayInsecureContentInternal(SecurityOrigin*, const KURL&, const MixedContentType) const; |
| + |
| + bool canRunInsecureContentInternal(SecurityOrigin*, const KURL&, const MixedContentType) const; |
| - void logWarning(bool allowed, const String& action, const KURL&) const; |
| + void logWarning(bool allowed, const KURL& i, const MixedContentType) const; |
| LocalFrame* m_frame; |
| }; |