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

Unified Diff: Source/core/dom/Notation.cpp

Issue 16379002: inline WebCore::Node::Node constructor more safely (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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.cpp
diff --git a/Source/core/dom/Notation.cpp b/Source/core/dom/Notation.cpp
index 074801d0b472c13936ca8f6e3b0345b7cfa6bdc9..81225e761ee3ced36a1a4becd40e6bb612572a2f 100644
--- a/Source/core/dom/Notation.cpp
+++ b/Source/core/dom/Notation.cpp
@@ -23,8 +23,8 @@
namespace WebCore {
-Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId)
- : ContainerNode(document)
+Notation::Notation(TreeScope* tree_scope, const String& name, const String& publicId, const String& systemId)
adamk 2013/06/04 23:08:08 tree_scope -> treeScope
Mostyn Bramley-Moore 2013/06/04 23:46:07 Done.
+ : ContainerNode(tree_scope)
, m_name(name)
, m_publicId(publicId)
, m_systemId(systemId)

Powered by Google App Engine
This is Rietveld 408576698