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

Unified Diff: Source/core/dom/Notation.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
Index: Source/core/dom/Notation.h
diff --git a/Source/core/dom/Notation.h b/Source/core/dom/Notation.h
index 819ff101c54ea49fb82d67d520bd5869e78644af..baf8608d7b2537f8089124918ee0b9b210c18953 100644
--- a/Source/core/dom/Notation.h
+++ b/Source/core/dom/Notation.h
@@ -33,6 +33,8 @@ public:
const String& publicId() const { return m_publicId; }
const String& systemId() const { return m_systemId; }
+ virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
+
private:
Notation(Handle<Document>, const String& name, const String& publicId, const String& systemId);

Powered by Google App Engine
This is Rietveld 408576698