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

Unified Diff: Source/core/dom/Document.h

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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/dom/ContainerNode.cpp ('k') | Source/core/dom/DocumentFragment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 6da8fc482004d18bd1c5dd6a834b9229841015f6..af1741bdf9f348a14630e84fbe98032e51f4fa53 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -1121,8 +1121,6 @@ public:
virtual void visitWith(Visitor*) const;
- virtual void acceptHeapVisitor(Visitor*) const;
-
using Node::accept;
void clearWeakPointers(Visitor*);
@@ -1137,6 +1135,8 @@ protected:
Handle<Document> selfHandle() { return adoptRawResult(this); }
Handle<const Document> selfHandle() const { return adoptRawResult(this); }
+ virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
+
private:
friend class Node;
friend class IgnoreDestructiveWriteCountIncrementer;
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/DocumentFragment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698