| Index: third_party/WebKit/Source/core/html/HTMLLinkElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.h b/third_party/WebKit/Source/core/html/HTMLLinkElement.h
|
| index 5883a2e018a0e91bef445e0a32bb075694233e29..d324f9d4e1122622a553b19444ca3c44491f20cc 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLLinkElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.h
|
| @@ -56,6 +56,7 @@ class CORE_EXPORT HTMLLinkElement final : public HTMLElement,
|
| String media() const { return m_media; }
|
| String typeValue() const { return m_type; }
|
| String asValue() const { return m_as; }
|
| + ReferrerPolicy referrerPolicy() const { return m_referrerPolicy; }
|
| const LinkRelAttribute& relAttribute() const { return m_relAttribute; }
|
| DOMTokenList& relList() const {
|
| return static_cast<DOMTokenList&>(*m_relList);
|
| @@ -96,6 +97,7 @@ class CORE_EXPORT HTMLLinkElement final : public HTMLElement,
|
| bool loadLink(const String& type,
|
| const String& as,
|
| const String& media,
|
| + ReferrerPolicy,
|
| const KURL&);
|
| bool isAlternate() const {
|
| return linkStyle()->isUnset() && m_relAttribute.isAlternate();
|
| @@ -149,6 +151,7 @@ class CORE_EXPORT HTMLLinkElement final : public HTMLElement,
|
| String m_type;
|
| String m_as;
|
| String m_media;
|
| + ReferrerPolicy m_referrerPolicy;
|
| Member<DOMTokenList> m_sizes;
|
| Vector<IntSize> m_iconSizes;
|
| Member<RelList> m_relList;
|
|
|