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

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

Issue 15856002: First step of HTMLImports (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Mac build Created 7 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/HTMLLinkElement.idl ('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 1856fc42efd4dc750b2136c3a15f094229013e18..009210885b4514a341233ab3dd31e03ee9fe9d57 100644
--- a/Source/core/html/LinkRelAttribute.h
+++ b/Source/core/html/LinkRelAttribute.h
@@ -48,16 +48,17 @@ public:
bool isLinkPrefetch() const { return m_isLinkPrefetch; }
bool isLinkSubresource() const { return m_isLinkSubresource; }
bool isLinkPrerender() const { return m_isLinkPrerender; }
+ bool isImport() const { return m_isImport; }
private:
- bool m_isStyleSheet;
IconType m_iconType;
- bool m_isAlternate;
- bool m_isDNSPrefetch;
- bool m_isLinkPrefetch;
- bool m_isLinkSubresource;
- bool m_isLinkPrerender;
-
+ bool m_isStyleSheet : 1;
+ bool m_isAlternate : 1;
+ bool m_isDNSPrefetch : 1;
+ bool m_isLinkPrefetch : 1;
+ bool m_isLinkSubresource : 1;
+ bool m_isLinkPrerender : 1;
+ bool m_isImport : 1;
};
}
« no previous file with comments | « Source/core/html/HTMLLinkElement.idl ('k') | Source/core/html/LinkRelAttribute.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698