summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom/Document.h
diff options
context:
space:
mode:
authorKulanthaivel Palanichamy <kulanthaivel@codeaurora.org>2012-09-06 17:34:17 -0700
committerSteve Kondik <shade@chemlab.org>2013-01-21 01:19:49 -0800
commit4bb8cc2e30240dd477bdb3fa20c16c9208ad7292 (patch)
tree09933305d36c04e26964a73eb2b3f1e5b58394a4 /Source/WebCore/dom/Document.h
parent91437969ddb28bc81b3652986a67aae7e2465db2 (diff)
downloadexternal_webkit-4bb8cc2e30240dd477bdb3fa20c16c9208ad7292.zip
external_webkit-4bb8cc2e30240dd477bdb3fa20c16c9208ad7292.tar.gz
external_webkit-4bb8cc2e30240dd477bdb3fa20c16c9208ad7292.tar.bz2
[WebKit] Make PLD DOM traversal optimization configurable
Add board specific configuration to enable/disable PLD DOM traversal optimization Change-Id: I6fccbcff2a51c53ec954af34f0f6d4536f2c4dfb
Diffstat (limited to 'Source/WebCore/dom/Document.h')
-rw-r--r--Source/WebCore/dom/Document.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/dom/Document.h b/Source/WebCore/dom/Document.h
index f94ce7a..a51861b 100644
--- a/Source/WebCore/dom/Document.h
+++ b/Source/WebCore/dom/Document.h
@@ -1434,7 +1434,9 @@ inline Node::Node(Document* document, ConstructionType type)
: m_document(document)
, m_previous(0)
, m_next(0)
+#ifdef __ARM_USE_PLD
, m_prefetch(0)
+#endif
, m_renderer(0)
, m_nodeFlags(type)
, m_previousNode(0)