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

Unified Diff: ppapi/proxy/gamepad_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/flash_resource.h ('k') | ppapi/proxy/graphics_2d_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/gamepad_resource.h
diff --git a/ppapi/proxy/gamepad_resource.h b/ppapi/proxy/gamepad_resource.h
index 807cc5c69e18ed0f1f4dbaed0db09933fa0fa0e2..4851d69cd8e51c2a976b8f9ffaa44ccb1f7a9878 100644
--- a/ppapi/proxy/gamepad_resource.h
+++ b/ppapi/proxy/gamepad_resource.h
@@ -33,14 +33,13 @@ class PPAPI_PROXY_EXPORT GamepadResource
public thunk::PPB_Gamepad_API {
public:
GamepadResource(Connection connection, PP_Instance instance);
- virtual ~GamepadResource();
+ ~GamepadResource() override;
// Resource implementation.
- virtual thunk::PPB_Gamepad_API* AsPPB_Gamepad_API() override;
+ thunk::PPB_Gamepad_API* AsPPB_Gamepad_API() override;
// PPB_Gamepad_API.
- virtual void Sample(PP_Instance instance,
- PP_GamepadsSampleData* data) override;
+ void Sample(PP_Instance instance, PP_GamepadsSampleData* data) override;
private:
void OnPluginMsgSendMemory(const ResourceMessageReplyParams& params);
« no previous file with comments | « ppapi/proxy/flash_resource.h ('k') | ppapi/proxy/graphics_2d_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698