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

Unified Diff: content/child/npapi/npobject_stub.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/child/npapi/npobject_proxy.h ('k') | content/child/npapi/plugin_lib_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/npobject_stub.h
diff --git a/content/child/npapi/npobject_stub.h b/content/child/npapi/npobject_stub.h
index 6dddae6f880985e7b6245fa85a3272f343e9063a..81cec4287fa24321b51c36f627980176cf9cf8f6 100644
--- a/content/child/npapi/npobject_stub.h
+++ b/content/child/npapi/npobject_stub.h
@@ -37,7 +37,7 @@ class NPObjectStub : public IPC::Listener,
int route_id,
int render_view_id,
const GURL& page_url);
- virtual ~NPObjectStub();
+ ~NPObjectStub() override;
// Schedules tear-down of this stub. The underlying NPObject reference is
// released, and further invokations from the IPC channel will fail once this
@@ -47,16 +47,16 @@ class NPObjectStub : public IPC::Listener,
void DeleteSoon();
// IPC::Sender implementation:
- virtual bool Send(IPC::Message* msg) override;
+ bool Send(IPC::Message* msg) override;
// NPObjectBase implementation.
- virtual NPObject* GetUnderlyingNPObject() override;
- virtual IPC::Listener* GetChannelListener() override;
+ NPObject* GetUnderlyingNPObject() override;
+ IPC::Listener* GetChannelListener() override;
private:
// IPC::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& message) override;
- virtual void OnChannelError() override;
+ bool OnMessageReceived(const IPC::Message& message) override;
+ void OnChannelError() override;
// message handlers
void OnRelease(IPC::Message* reply_msg);
« no previous file with comments | « content/child/npapi/npobject_proxy.h ('k') | content/child/npapi/plugin_lib_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698