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

Unified Diff: Source/bindings/templates/callback_interface.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/templates/callback_interface.h
diff --git a/Source/bindings/templates/callback_interface.h b/Source/bindings/templates/callback_interface.h
index 41b631e909e4eeb9279f0c505f253e3c8ea70149..28d72e33463105e58514a3e187fcc20eb342ebae 100644
--- a/Source/bindings/templates/callback_interface.h
+++ b/Source/bindings/templates/callback_interface.h
@@ -14,7 +14,7 @@
namespace blink {
-class {{v8_class}} FINAL : public {{cpp_class}}, public ActiveDOMCallback {
+class {{v8_class}} final : public {{cpp_class}}, public ActiveDOMCallback {
public:
static {{v8_class}}* create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
{
@@ -24,7 +24,7 @@ public:
virtual ~{{v8_class}}();
{% for method in methods %}
- virtual {{method.cpp_type}} {{method.name}}({{method.argument_declarations | join(', ')}}) OVERRIDE;
+ virtual {{method.cpp_type}} {{method.name}}({{method.argument_declarations | join(', ')}}) override;
{% endfor %}
private:
{{v8_class}}(v8::Handle<v8::Function>, ScriptState*);
« no previous file with comments | « Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h ('k') | Source/bindings/templates/dictionary_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698