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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.h

Issue 1781783002: Implement support for link type serviceworker in link elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: uppercase W in runtime feature name Created 4 years, 9 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
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 fa3643d6fd88b57767c7bfaaf0e74b9a2b2695b3..f6d5338c41e043e633c18956650027ffa7c4b849 100644
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.h
@@ -143,6 +143,7 @@ public:
String asValue() const { return m_as; }
const LinkRelAttribute& relAttribute() const { return m_relAttribute; }
DOMTokenList& relList() const { return static_cast<DOMTokenList&>(*m_relList); }
+ String scope() const { return m_scope; }
const AtomicString& type() const;
@@ -227,6 +228,7 @@ private:
Vector<IntSize> m_iconSizes;
RawPtrWillBeMember<RelList> m_relList;
LinkRelAttribute m_relAttribute;
+ String m_scope;
bool m_createdByParser;
bool m_isInShadowTree;

Powered by Google App Engine
This is Rietveld 408576698