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

Unified Diff: ppapi/proxy/network_monitor_resource.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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 | « ppapi/proxy/network_list_resource.h ('k') | ppapi/proxy/network_proxy_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/network_monitor_resource.h
diff --git a/ppapi/proxy/network_monitor_resource.h b/ppapi/proxy/network_monitor_resource.h
index 529dd6e1e39d8880d9dd4f39d70da8cdf887cd96..e63ae390fa746807fa2fb4c13713e469a1ae380b 100644
--- a/ppapi/proxy/network_monitor_resource.h
+++ b/ppapi/proxy/network_monitor_resource.h
@@ -24,15 +24,15 @@ class NetworkMonitorResource : public PluginResource,
public:
explicit NetworkMonitorResource(Connection connection,
PP_Instance instance);
- virtual ~NetworkMonitorResource();
+ ~NetworkMonitorResource() override;
// PluginResource overrides.
ppapi::thunk::PPB_NetworkMonitor_API* AsPPB_NetworkMonitor_API() override;
- virtual void OnReplyReceived(const ResourceMessageReplyParams& params,
- const IPC::Message& msg) override;
+ void OnReplyReceived(const ResourceMessageReplyParams& params,
+ const IPC::Message& msg) override;
// thunk::PPB_NetworkMonitor_API interface
- virtual int32_t UpdateNetworkList(
+ int32_t UpdateNetworkList(
PP_Resource* network_list,
scoped_refptr<TrackedCallback> callback) override;
« no previous file with comments | « ppapi/proxy/network_list_resource.h ('k') | ppapi/proxy/network_proxy_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698