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

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

Issue 563863002: Revert of Revert of 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 | « Source/core/frame/csp/CSPSource.h ('k') | Source/core/frame/csp/CSPSourceList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/csp/CSPSource.cpp
diff --git a/Source/core/frame/csp/CSPSource.cpp b/Source/core/frame/csp/CSPSource.cpp
index 1202b0aca47a760e5d46f9e985281cd544fc86e0..7d8c0ef26e3799576d63da49225bd0534d1e2d93 100644
--- a/Source/core/frame/csp/CSPSource.cpp
+++ b/Source/core/frame/csp/CSPSource.cpp
@@ -13,14 +13,14 @@
namespace blink {
-CSPSource::CSPSource(ContentSecurityPolicy* policy, const String& scheme, const String& host, int port, const String& path, bool hostHasWildcard, bool portHasWildcard)
+CSPSource::CSPSource(ContentSecurityPolicy* policy, const String& scheme, const String& host, int port, const String& path, WildcardDisposition hostWildcard, WildcardDisposition portWildcard)
: m_policy(policy)
, m_scheme(scheme)
, m_host(host)
, m_port(port)
, m_path(path)
- , m_hostHasWildcard(hostHasWildcard)
- , m_portHasWildcard(portHasWildcard)
+ , m_hostWildcard(hostWildcard)
+ , m_portWildcard(portWildcard)
{
}
@@ -45,7 +45,7 @@
const String& host = url.host();
if (equalIgnoringCase(host, m_host))
return true;
- return m_hostHasWildcard && host.endsWith("." + m_host, false);
+ return m_hostWildcard == HasWildcard && host.endsWith("." + m_host, false);
}
@@ -64,7 +64,7 @@
bool CSPSource::portMatches(const KURL& url) const
{
- if (m_portHasWildcard)
+ if (m_portWildcard == HasWildcard)
return true;
int port = url.port();
« no previous file with comments | « Source/core/frame/csp/CSPSource.h ('k') | Source/core/frame/csp/CSPSourceList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698