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

Unified Diff: Source/core/frame/csp/CSPSource.h

Issue 568433002: CSP: Convert CSPSource constructor bools into a enum. (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
« no previous file with comments | « no previous file | Source/core/frame/csp/CSPSource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/csp/CSPSource.h
diff --git a/Source/core/frame/csp/CSPSource.h b/Source/core/frame/csp/CSPSource.h
index bad9daf45150fca894a11a3aa6b0a027d237bfc8..5d753b426e0afda112b1f2e514ad68208e3a7208 100644
--- a/Source/core/frame/csp/CSPSource.h
+++ b/Source/core/frame/csp/CSPSource.h
@@ -14,7 +14,12 @@ class KURL;
class CSPSource {
public:
- CSPSource(ContentSecurityPolicy*, const String& scheme, const String& host, int port, const String& path, bool hostHasWildcard, bool portHasWildcard);
+ enum WildcardDisposition {
+ HasWildcard,
+ NoWildcard
+ };
+
+ CSPSource(ContentSecurityPolicy*, const String& scheme, const String& host, int port, const String& path, WildcardDisposition hostWildcard, WildcardDisposition portWildcard);
bool matches(const KURL&) const;
private:
@@ -30,8 +35,8 @@ private:
int m_port;
String m_path;
- bool m_hostHasWildcard;
- bool m_portHasWildcard;
+ WildcardDisposition m_hostWildcard;
+ WildcardDisposition m_portWildcard;
};
} // namespace
« no previous file with comments | « no previous file | Source/core/frame/csp/CSPSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698