Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Unified Diff: Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h

Issue 638813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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*);
« no previous file with comments | « Source/bindings/core/v8/custom/V8ArrayBufferCustom.h ('k') | Source/bindings/templates/callback_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698