summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-12-10 16:19:40 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-12-10 16:01:50 +0000
commit51f6c2793adab2d864b3d2b360000ef8db1d3e92 (patch)
tree835b3b4446b012c75e80177cef9fbe6972cc7dbe /chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h
parent6036726eb981b6c4b42047513b9d3f4ac865daac (diff)
downloadqtwebengine-chromium-51f6c2793adab2d864b3d2b360000ef8db1d3e92.tar.gz
BASELINE: Update Chromium to 71.0.3578.93
Change-Id: I6a32086c33670e1b033f8b10e6bf1fd4da1d105d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h')
-rw-r--r--chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h b/chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h
index 195c0af78f2..28429354a4a 100644
--- a/chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h
+++ b/chromium/third_party/blink/renderer/core/frame/csp/source_list_directive.h
@@ -73,27 +73,27 @@ class CORE_EXPORT SourceListDirective final : public CSPDirective {
bool ParseSource(const UChar* begin,
const UChar* end,
- String& scheme,
- String& host,
- int& port,
- String& path,
- CSPSource::WildcardDisposition&,
- CSPSource::WildcardDisposition&);
- bool ParseScheme(const UChar* begin, const UChar* end, String& scheme);
+ String* scheme,
+ String* host,
+ int* port,
+ String* path,
+ CSPSource::WildcardDisposition*,
+ CSPSource::WildcardDisposition*);
+ bool ParseScheme(const UChar* begin, const UChar* end, String* scheme);
static bool ParseHost(const UChar* begin,
const UChar* end,
- String& host,
- CSPSource::WildcardDisposition&);
+ String* host,
+ CSPSource::WildcardDisposition*);
bool ParsePort(const UChar* begin,
const UChar* end,
- int& port,
- CSPSource::WildcardDisposition&);
- bool ParsePath(const UChar* begin, const UChar* end, String& path);
- bool ParseNonce(const UChar* begin, const UChar* end, String& nonce);
+ int* port,
+ CSPSource::WildcardDisposition*);
+ 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&);
+ DigestValue* hash,
+ ContentSecurityPolicyHashAlgorithm*);
void AddSourceSelf();
void AddSourceStar();
@@ -144,4 +144,4 @@ class CORE_EXPORT SourceListDirective final : public CSPDirective {
} // namespace blink
-#endif
+#endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_CSP_SOURCE_LIST_DIRECTIVE_H_