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

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

Issue 249633002: Detect <link rel='manifest'> and notify embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 | « Source/core/html/LinkManifest.cpp ('k') | 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 ec04cb3f0b63f43bf5194a1a65fe56f4b7282228..cec301b405055aaba82826b844981fd5a3c57d54 100644
--- a/Source/core/html/LinkRelAttribute.h
+++ b/Source/core/html/LinkRelAttribute.h
@@ -50,6 +50,7 @@ public:
bool isLinkPrerender() const { return m_isLinkPrerender; }
bool isLinkNext() const { return m_isLinkNext; }
bool isImport() const { return m_isImport; }
+ bool isManifest() const { return m_isManifest; }
private:
IconType m_iconType;
@@ -61,6 +62,7 @@ private:
bool m_isLinkPrerender : 1;
bool m_isLinkNext : 1;
bool m_isImport : 1;
+ bool m_isManifest : 1;
};
}
« no previous file with comments | « Source/core/html/LinkManifest.cpp ('k') | Source/core/html/LinkRelAttribute.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698