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

Unified Diff: ppapi/proxy/network_list_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/net_address_resource.h ('k') | ppapi/proxy/network_monitor_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/network_list_resource.h
diff --git a/ppapi/proxy/network_list_resource.h b/ppapi/proxy/network_list_resource.h
index 71fb856d3836fa9e61fab05d4a4acc05c3969211..005b752bec0d731d40c71bea84ba01ad049f58f6 100644
--- a/ppapi/proxy/network_list_resource.h
+++ b/ppapi/proxy/network_list_resource.h
@@ -25,20 +25,19 @@ class NetworkListResource
public:
NetworkListResource(PP_Instance instance,
const SerializedNetworkList& list);
- virtual ~NetworkListResource();
+ ~NetworkListResource() override;
// Resource override.
- virtual thunk::PPB_NetworkList_API* AsPPB_NetworkList_API() override;
+ thunk::PPB_NetworkList_API* AsPPB_NetworkList_API() override;
// PPB_NetworkList_API implementation.
- virtual uint32_t GetCount() override;
- virtual PP_Var GetName(uint32_t index) override;
- virtual PP_NetworkList_Type GetType(uint32_t index) override;
- virtual PP_NetworkList_State GetState(uint32_t index) override;
- virtual int32_t GetIpAddresses(uint32_t index,
- const PP_ArrayOutput& output) override;
- virtual PP_Var GetDisplayName(uint32_t index) override;
- virtual uint32_t GetMTU(uint32_t index) override;
+ uint32_t GetCount() override;
+ PP_Var GetName(uint32_t index) override;
+ PP_NetworkList_Type GetType(uint32_t index) override;
+ PP_NetworkList_State GetState(uint32_t index) override;
+ int32_t GetIpAddresses(uint32_t index, const PP_ArrayOutput& output) override;
+ PP_Var GetDisplayName(uint32_t index) override;
+ uint32_t GetMTU(uint32_t index) override;
private:
SerializedNetworkList list_;
« no previous file with comments | « ppapi/proxy/net_address_resource.h ('k') | ppapi/proxy/network_monitor_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698