Chromium Code Reviews| 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) |