| Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.h b/third_party/WebKit/Source/core/dom/ProcessingInstruction.h
|
| index b6ebf68e42a37899dc93891c9d463831bc0e6c11..7fba8a3e17e6cd60d7ca33b86924cd249f03708b 100644
|
| --- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.h
|
| +++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.h
|
| @@ -104,11 +104,11 @@ private:
|
| Member<DetachableEventListener> m_listenerForXSLT;
|
| };
|
|
|
| -DEFINE_NODE_TYPE_CASTS(ProcessingInstruction, getNodeType() == Node::PROCESSING_INSTRUCTION_NODE);
|
| +DEFINE_NODE_TYPE_CASTS(ProcessingInstruction, getNodeType() == Node::kProcessingInstructionNode);
|
|
|
| inline bool isXSLStyleSheet(const Node& node)
|
| {
|
| - return node.getNodeType() == Node::PROCESSING_INSTRUCTION_NODE && toProcessingInstruction(node).isXSL();
|
| + return node.getNodeType() == Node::kProcessingInstructionNode && toProcessingInstruction(node).isXSL();
|
| }
|
|
|
| } // namespace blink
|
|
|