| Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| index 9a6bc3448038110439c25478cd468569d33d2a86..56eebfafa6362cc3964e3fecfba0dfb2732fafeb 100644
|
| --- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| @@ -79,7 +79,7 @@ Node::NodeType ProcessingInstruction::getNodeType() const {
|
| return kProcessingInstructionNode;
|
| }
|
|
|
| -Node* ProcessingInstruction::cloneNode(bool /*deep*/) {
|
| +Node* ProcessingInstruction::cloneNode(bool /*deep*/, ExceptionState&) {
|
| // FIXME: Is it a problem that this does not copy m_localHref?
|
| // What about other data members?
|
| return create(document(), m_target, m_data);
|
|
|