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

Unified Diff: Source/core/xml/NativeXPathNSResolver.h

Issue 637483002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/xml (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
« no previous file with comments | « Source/core/xml/DocumentXPathEvaluator.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/NativeXPathNSResolver.h
diff --git a/Source/core/xml/NativeXPathNSResolver.h b/Source/core/xml/NativeXPathNSResolver.h
index fdb5071f03f1abb81e65a10c751e2299470b8ed2..bed67bdd86b7fdf815d517f70f94adce66789510 100644
--- a/Source/core/xml/NativeXPathNSResolver.h
+++ b/Source/core/xml/NativeXPathNSResolver.h
@@ -33,16 +33,16 @@ namespace blink {
class Node;
-class NativeXPathNSResolver FINAL : public XPathNSResolver {
+class NativeXPathNSResolver final : public XPathNSResolver {
public:
static PassRefPtrWillBeRawPtr<NativeXPathNSResolver> create(PassRefPtrWillBeRawPtr<Node> node)
{
return adoptRefWillBeNoop(new NativeXPathNSResolver(node));
}
- 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:
explicit NativeXPathNSResolver(PassRefPtrWillBeRawPtr<Node>);
« no previous file with comments | « Source/core/xml/DocumentXPathEvaluator.h ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698