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

Unified Diff: extensions/renderer/object_backed_native_handler.h

Issue 664933004: Standardize usage of virtual/override/final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « extensions/renderer/module_system_unittest.cc ('k') | extensions/renderer/programmatic_script_injector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/object_backed_native_handler.h
diff --git a/extensions/renderer/object_backed_native_handler.h b/extensions/renderer/object_backed_native_handler.h
index d466c233719508f5e9cdc0a04747ce31f375a1e9..f31103fb645bf63db32544aef36f6c32179f4ccb 100644
--- a/extensions/renderer/object_backed_native_handler.h
+++ b/extensions/renderer/object_backed_native_handler.h
@@ -24,11 +24,11 @@ class ScriptContext;
class ObjectBackedNativeHandler : public NativeHandler {
public:
explicit ObjectBackedNativeHandler(ScriptContext* context);
- virtual ~ObjectBackedNativeHandler();
+ ~ObjectBackedNativeHandler() override;
// Create an object with bindings to the native functions defined through
// RouteFunction().
- virtual v8::Handle<v8::Object> NewInstance() override;
+ v8::Handle<v8::Object> NewInstance() override;
v8::Isolate* GetIsolate() const;
@@ -44,7 +44,7 @@ class ObjectBackedNativeHandler : public NativeHandler {
ScriptContext* context() const { return context_; }
- virtual void Invalidate() override;
+ void Invalidate() override;
private:
// Callback for RouteFunction which routes the V8 call to the correct
« no previous file with comments | « extensions/renderer/module_system_unittest.cc ('k') | extensions/renderer/programmatic_script_injector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698