| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 8aa260e548bb16bc0b4d33e0a2044e3efa8304a0..5131c76b9f30de590195ffc234dbb9ca5d7b3d8d 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -324,7 +324,7 @@ public:
|
| PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionState&);
|
| PassRefPtr<Attr> createAttribute(const AtomicString& name, ExceptionState&);
|
| PassRefPtr<Attr> createAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamespaceChecks = false);
|
| - PassRefPtr<Node> importNode(Node* importedNode, ExceptionState& ec) { return importNode(importedNode, true, ec); }
|
| + PassRefPtr<Node> importNode(Node* importedNode, ExceptionState&);
|
| PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionState&);
|
| PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&);
|
| PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser);
|
|
|