Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / templates / callback_interface.h
index 41b631e..28d72e3 100644 (file)
@@ -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*);