summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLDocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLDocument.h')
-rw-r--r--WebCore/html/HTMLDocument.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/html/HTMLDocument.h b/WebCore/html/HTMLDocument.h
index 4b14d0c..f4bdaec 100644
--- a/WebCore/html/HTMLDocument.h
+++ b/WebCore/html/HTMLDocument.h
@@ -82,6 +82,14 @@ public:
protected:
HTMLDocument(Frame*);
+#ifdef ANDROID_INSTRUMENT
+ // Overridden to resolve the ambiguous
+ void* operator new(size_t size);
+ void* operator new[](size_t size);
+ void operator delete(void* p, size_t size);
+ void operator delete[](void* p, size_t size);
+#endif
+
private:
virtual bool childAllowed(Node*);