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

Unified Diff: content/renderer/pepper/ppb_flash_message_loop_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_buffer_impl.h ('k') | content/renderer/pepper/ppb_graphics_3d_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/ppb_flash_message_loop_impl.h
diff --git a/content/renderer/pepper/ppb_flash_message_loop_impl.h b/content/renderer/pepper/ppb_flash_message_loop_impl.h
index a33f351a30b022cad24d2c94098df9afdbb0cb3b..29c4e1b16651da01d41982748993aa5d958bc062 100644
--- a/content/renderer/pepper/ppb_flash_message_loop_impl.h
+++ b/content/renderer/pepper/ppb_flash_message_loop_impl.h
@@ -20,20 +20,19 @@ class PPB_Flash_MessageLoop_Impl
static PP_Resource Create(PP_Instance instance);
// Resource.
- virtual ppapi::thunk::PPB_Flash_MessageLoop_API* AsPPB_Flash_MessageLoop_API()
+ ppapi::thunk::PPB_Flash_MessageLoop_API* AsPPB_Flash_MessageLoop_API()
override;
// PPB_Flash_MessageLoop_API implementation.
- virtual int32_t Run() override;
- virtual void Quit() override;
- virtual void RunFromHostProxy(const RunFromHostProxyCallback& callback)
- override;
+ int32_t Run() override;
+ void Quit() override;
+ void RunFromHostProxy(const RunFromHostProxyCallback& callback) override;
private:
class State;
explicit PPB_Flash_MessageLoop_Impl(PP_Instance instance);
- virtual ~PPB_Flash_MessageLoop_Impl();
+ ~PPB_Flash_MessageLoop_Impl() override;
// If |callback| is valid, it will be called when the message loop is signaled
// to quit, and the result passed into it will be the same value as what this
« no previous file with comments | « content/renderer/pepper/ppb_buffer_impl.h ('k') | content/renderer/pepper/ppb_graphics_3d_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698