Chromium Code Reviews| Index: Source/core/dom/Notation.h |
| diff --git a/Source/core/dom/Notation.h b/Source/core/dom/Notation.h |
| index 507e10f139f8f70ad467d72b7a5e0d426746f0f9..432a69d3066347502abb2c6e52c4beabfa2c1b11 100644 |
| --- a/Source/core/dom/Notation.h |
| +++ b/Source/core/dom/Notation.h |
| @@ -23,6 +23,7 @@ |
| #define Notation_h |
| #include "core/dom/ContainerNode.h" |
| +#include "core/dom/TreeScope.h" |
|
adamk
2013/06/04 23:08:08
You shouldn't need an #include here
Mostyn Bramley-Moore
2013/06/04 23:46:07
Done.
|
| namespace WebCore { |
| @@ -34,7 +35,7 @@ public: |
| const String& systemId() const { return m_systemId; } |
| private: |
| - Notation(Document*, const String& name, const String& publicId, const String& systemId); |
| + Notation(TreeScope*, const String& name, const String& publicId, const String& systemId); |
| virtual String nodeName() const; |
| virtual NodeType nodeType() const; |