| Index: Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h
|
| diff --git a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h
|
| index 8f770d8a62497fdf48566293fc2ae873f7143fad..c13c7aeb968f16f92ab4ac3d83e8c4b9ef61d061 100644
|
| --- a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h
|
| +++ b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h
|
| @@ -42,13 +42,13 @@ namespace blink {
|
| // V8CustomXPathNSResolver does not create a persistent handle to the
|
| // given resolver object. So the lifetime of V8CustomXPathNSResolver
|
| // must not exceed the lifetime of the passed handle.
|
| -class V8CustomXPathNSResolver FINAL : public XPathNSResolver {
|
| +class V8CustomXPathNSResolver final : public XPathNSResolver {
|
| public:
|
| static PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver, v8::Isolate*);
|
|
|
| - virtual AtomicString lookupNamespaceURI(const String& prefix) OVERRIDE;
|
| + virtual AtomicString lookupNamespaceURI(const String& prefix) override;
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver, v8::Isolate*);
|
|
|