| Index: third_party/WebKit/Source/core/dom/Node.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
|
| index fedf63e639b20271dd49a9d7fb12d86cfa38f785..80606ad1a576af9279480333c498a6e4792d5305 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.h
|
| +++ b/third_party/WebKit/Source/core/dom/Node.h
|
| @@ -228,7 +228,7 @@ public:
|
| void normalize();
|
|
|
| bool isEqualNode(Node*) const;
|
| - bool isSameNode(Node* other) const { return this == other; }
|
| + bool isSameNode(const Node* other) const { return this == other; }
|
| bool isDefaultNamespace(const AtomicString& namespaceURI) const;
|
| const AtomicString& lookupPrefix(const AtomicString& namespaceURI) const;
|
| const AtomicString& lookupNamespaceURI(const String& prefix) const;
|
|
|