| Index: Source/core/frame/csp/CSPSourceList.h
|
| diff --git a/Source/core/frame/csp/CSPSourceList.h b/Source/core/frame/csp/CSPSourceList.h
|
| index d52a09ac82fbee32a48b355d0d0b6d70195a23d6..3f29a52214c228cbccf05b7522dff1ee6a8df944 100644
|
| --- a/Source/core/frame/csp/CSPSourceList.h
|
| +++ b/Source/core/frame/csp/CSPSourceList.h
|
| @@ -33,10 +33,10 @@
|
| bool isHashOrNoncePresent() const;
|
|
|
| private:
|
| - bool parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, String& path, CSPSource::WildcardDisposition&, CSPSource::WildcardDisposition&);
|
| + bool parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, String& path, bool& hostHasWildcard, bool& portHasWildcard);
|
| bool parseScheme(const UChar* begin, const UChar* end, String& scheme);
|
| - bool parseHost(const UChar* begin, const UChar* end, String& host, CSPSource::WildcardDisposition&);
|
| - bool parsePort(const UChar* begin, const UChar* end, int& port, CSPSource::WildcardDisposition&);
|
| + bool parseHost(const UChar* begin, const UChar* end, String& host, bool& hostHasWildcard);
|
| + bool parsePort(const UChar* begin, const UChar* end, int& port, bool& portHasWildcard);
|
| bool parsePath(const UChar* begin, const UChar* end, String& path);
|
| bool parseNonce(const UChar* begin, const UChar* end, String& nonce);
|
| bool parseHash(const UChar* begin, const UChar* end, DigestValue& hash, ContentSecurityPolicyHashAlgorithm&);
|
|
|