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

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

Issue 116183005: Add support for rel=next to Prerender in Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing file Created 6 years, 10 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
« no previous file with comments | « no previous file | Source/core/html/LinkRelAttribute.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/LinkRelAttribute.h
diff --git a/Source/core/html/LinkRelAttribute.h b/Source/core/html/LinkRelAttribute.h
index a124012055d8b1ad84744c34746f6fafeb6f2735..9c2a147225e1f8e8bb0d2450f2b726c65b820683 100644
--- a/Source/core/html/LinkRelAttribute.h
+++ b/Source/core/html/LinkRelAttribute.h
@@ -52,6 +52,7 @@ public:
bool isLinkPrefetch() const { return m_isLinkPrefetch; }
bool isLinkSubresource() const { return m_isLinkSubresource; }
bool isLinkPrerender() const { return m_isLinkPrerender; }
+ bool isLinkNext() const { return m_isLinkNext; }
bool isImport() const { return m_isImport; }
private:
@@ -62,6 +63,7 @@ private:
bool m_isLinkPrefetch : 1;
bool m_isLinkSubresource : 1;
bool m_isLinkPrerender : 1;
+ bool m_isLinkNext : 1;
bool m_isImport : 1;
};
« no previous file with comments | « no previous file | Source/core/html/LinkRelAttribute.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698