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

Unified Diff: Source/core/xml/XPathVariableReference.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/XPathStep.h ('k') | Source/core/xml/XSLImportRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathVariableReference.h
diff --git a/Source/core/xml/XPathVariableReference.h b/Source/core/xml/XPathVariableReference.h
index b3e64e33b6e26e8cfe0d49000c4a03cc52cf15b8..bae90cc0bc29ee0c4c33ac51abd7ef1baa0f4432 100644
--- a/Source/core/xml/XPathVariableReference.h
+++ b/Source/core/xml/XPathVariableReference.h
@@ -33,13 +33,13 @@ namespace blink {
namespace XPath {
// Variable references are not used with XPathEvaluator.
-class VariableReference FINAL : public Expression {
+class VariableReference final : public Expression {
public:
explicit VariableReference(const String& name);
private:
- virtual Value evaluate(EvaluationContext&) const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { ASSERT_NOT_REACHED(); return Value::NumberValue; }
+ virtual Value evaluate(EvaluationContext&) const override;
+ virtual Value::Type resultType() const override { ASSERT_NOT_REACHED(); return Value::NumberValue; }
String m_name;
};
« no previous file with comments | « Source/core/xml/XPathStep.h ('k') | Source/core/xml/XSLImportRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698