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

Unified Diff: ppapi/proxy/flash_menu_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_fullscreen_resource.h ('k') | ppapi/proxy/flash_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/flash_menu_resource.h
diff --git a/ppapi/proxy/flash_menu_resource.h b/ppapi/proxy/flash_menu_resource.h
index 337e95332e8a933cf03ac6f5c0dd56135f6f345b..23b74876236034715a5a8302780b417b403d07bb 100644
--- a/ppapi/proxy/flash_menu_resource.h
+++ b/ppapi/proxy/flash_menu_resource.h
@@ -22,7 +22,7 @@ class FlashMenuResource
public:
// You must call Initialize after construction.
FlashMenuResource(Connection connection, PP_Instance instance);
- virtual ~FlashMenuResource();
+ ~FlashMenuResource() override;
// Returns true on success. False means that this object can not be used.
// This has to be separate from the constructor because the menu data could
@@ -30,16 +30,16 @@ class FlashMenuResource
bool Initialize(const PP_Flash_Menu* menu_data);
// Resource overrides.
- virtual thunk::PPB_Flash_Menu_API* AsPPB_Flash_Menu_API() override;
+ thunk::PPB_Flash_Menu_API* AsPPB_Flash_Menu_API() override;
// PPB_Flash_Menu_API.
- virtual int32_t Show(const PP_Point* location,
- int32_t* selected_id,
- scoped_refptr<TrackedCallback> callback) override;
+ int32_t Show(const PP_Point* location,
+ int32_t* selected_id,
+ scoped_refptr<TrackedCallback> callback) override;
private:
- virtual void OnReplyReceived(const proxy::ResourceMessageReplyParams& params,
- const IPC::Message& msg) override;
+ void OnReplyReceived(const proxy::ResourceMessageReplyParams& params,
+ const IPC::Message& msg) override;
void OnShowReply(
const proxy::ResourceMessageReplyParams& params,
« no previous file with comments | « ppapi/proxy/flash_fullscreen_resource.h ('k') | ppapi/proxy/flash_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698