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

Unified Diff: Source/WebCore/dom/NodeRareData.cpp

Issue 14028014: Remove MicroData implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also delete all the tests Created 7 years, 8 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/WebCore/dom/NodeRareData.h ('k') | Source/WebCore/dom/PropertyNodeList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/NodeRareData.cpp
diff --git a/Source/WebCore/dom/NodeRareData.cpp b/Source/WebCore/dom/NodeRareData.cpp
index 245e6edc663c55d8f06a0078475a90d20b3da758..fa4827b1cc901b27834d8239de8aded6d467bc00 100644
--- a/Source/WebCore/dom/NodeRareData.cpp
+++ b/Source/WebCore/dom/NodeRareData.cpp
@@ -41,9 +41,6 @@ namespace WebCore {
struct SameSizeAsNodeRareData {
unsigned m_bitfields : 20;
void* m_pointer[3];
-#if ENABLE(MICRODATA)
- void* m_microData;
-#endif
};
COMPILE_ASSERT(sizeof(NodeRareData) == sizeof(SameSizeAsNodeRareData), NodeRareDataShouldStaySmall);
@@ -62,10 +59,6 @@ void NodeRareData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
info.addMember(m_nodeLists, "nodeLists");
info.addMember(m_mutationObserverData, "mutationObserverData");
-
-#if ENABLE(MICRODATA)
- info.addMember(m_microDataTokenLists, "microDataTokenLists");
-#endif
}
} // namespace WebCore
« no previous file with comments | « Source/WebCore/dom/NodeRareData.h ('k') | Source/WebCore/dom/PropertyNodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698