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

Unified Diff: content/renderer/pepper/ppb_broker_impl.h

Issue 670683003: Standardize usage of virtual/override/final in content/renderer/ (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/renderer/pepper/ppb_audio_impl.h ('k') | content/renderer/pepper/ppb_buffer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/ppb_broker_impl.h
diff --git a/content/renderer/pepper/ppb_broker_impl.h b/content/renderer/pepper/ppb_broker_impl.h
index 4b5e7776a4401c9d65cc652367934c5e6ae24419..0f7485535d513c521fa3d4fd1635319d5f5d55f6 100644
--- a/content/renderer/pepper/ppb_broker_impl.h
+++ b/content/renderer/pepper/ppb_broker_impl.h
@@ -33,12 +33,12 @@ class PPB_Broker_Impl : public ppapi::Resource,
explicit PPB_Broker_Impl(PP_Instance instance);
// Resource override.
- virtual ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() override;
+ ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() override;
// PPB_BrokerTrusted implementation.
- virtual int32_t Connect(
+ int32_t Connect(
scoped_refptr<ppapi::TrackedCallback> connect_callback) override;
- virtual int32_t GetHandle(int32_t* handle) override;
+ int32_t GetHandle(int32_t* handle) override;
// Returns the URL of the document this plug-in runs in. This is necessary to
// decide whether to grant access to the PPAPI broker.
@@ -47,10 +47,10 @@ class PPB_Broker_Impl : public ppapi::Resource,
void BrokerConnected(int32_t handle, int32_t result);
private:
- virtual ~PPB_Broker_Impl();
+ ~PPB_Broker_Impl() override;
// IPC::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
void OnPpapiBrokerChannelCreated(base::ProcessId broker_pid,
const IPC::ChannelHandle& handle);
« no previous file with comments | « content/renderer/pepper/ppb_audio_impl.h ('k') | content/renderer/pepper/ppb_buffer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698