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

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

Issue 1647813003: Remove support for <link rel=subresource> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed and deleted tests Created 4 years, 11 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/LinkRelAttribute.h
diff --git a/third_party/WebKit/Source/core/html/LinkRelAttribute.h b/third_party/WebKit/Source/core/html/LinkRelAttribute.h
index 5a86771e4996d9db142da470b3f733b588b7d7bb..b3e5d1c6ae7083214430f402b887c6d0edfed0d6 100644
--- a/third_party/WebKit/Source/core/html/LinkRelAttribute.h
+++ b/third_party/WebKit/Source/core/html/LinkRelAttribute.h
@@ -50,7 +50,6 @@ public:
bool isDNSPrefetch() const { return m_isDNSPrefetch; }
bool isPreconnect() const { return m_isPreconnect; }
bool isLinkPrefetch() const { return m_isLinkPrefetch; }
- bool isLinkSubresource() const { return m_isLinkSubresource; }
bool isLinkPreload() const { return m_isLinkPreload; }
bool isLinkPrerender() const { return m_isLinkPrerender; }
bool isLinkNext() const { return m_isLinkNext; }
@@ -64,7 +63,6 @@ private:
bool m_isDNSPrefetch : 1;
bool m_isPreconnect : 1;
bool m_isLinkPrefetch : 1;
- bool m_isLinkSubresource : 1;
bool m_isLinkPreload : 1;
bool m_isLinkPrerender : 1;
bool m_isLinkNext : 1;

Powered by Google App Engine
This is Rietveld 408576698