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

Unified Diff: ppapi/proxy/flash_resource.h

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (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 | « ppapi/proxy/flash_menu_resource.h ('k') | ppapi/proxy/gamepad_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/flash_resource.h
diff --git a/ppapi/proxy/flash_resource.h b/ppapi/proxy/flash_resource.h
index cfb6b1e7123548d56d405f4efc03bfa8f7521380..891de4c1a875c45bfb24d0a67f0fb96276441a0e 100644
--- a/ppapi/proxy/flash_resource.h
+++ b/ppapi/proxy/flash_resource.h
@@ -27,21 +27,21 @@ class FlashResource
virtual ~FlashResource();
// Resource override.
- virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE;
+ virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() override;
// PPB_Flash_Functions_API implementation.
virtual PP_Var GetProxyForURL(PP_Instance instance,
- const std::string& url) OVERRIDE;
- virtual void UpdateActivity(PP_Instance instance) OVERRIDE;
+ const std::string& url) override;
+ virtual void UpdateActivity(PP_Instance instance) override;
virtual PP_Bool SetCrashData(PP_Instance instance,
PP_FlashCrashKey key,
- PP_Var value) OVERRIDE;
+ PP_Var value) override;
virtual double GetLocalTimeZoneOffset(PP_Instance instance,
- PP_Time t) OVERRIDE;
+ PP_Time t) override;
virtual PP_Var GetSetting(PP_Instance instance,
- PP_FlashSetting setting) OVERRIDE;
+ PP_FlashSetting setting) override;
virtual void SetInstanceAlwaysOnTop(PP_Instance instance,
- PP_Bool on_top) OVERRIDE;
+ PP_Bool on_top) override;
virtual PP_Bool DrawGlyphs(
PP_Instance instance,
PP_Resource pp_image_data,
@@ -53,14 +53,14 @@ class FlashResource
PP_Bool allow_subpixel_aa,
uint32_t glyph_count,
const uint16_t glyph_indices[],
- const PP_Point glyph_advances[]) OVERRIDE;
+ const PP_Point glyph_advances[]) override;
virtual int32_t Navigate(PP_Instance instance,
PP_Resource request_info,
const char* target,
- PP_Bool from_user_action) OVERRIDE;
+ PP_Bool from_user_action) override;
virtual PP_Bool IsRectTopmost(PP_Instance instance,
- const PP_Rect* rect) OVERRIDE;
- virtual void InvokePrinting(PP_Instance instance) OVERRIDE;
+ const PP_Rect* rect) override;
+ virtual void InvokePrinting(PP_Instance instance) override;
private:
// Non-owning pointer to the PluginDispatcher that owns this object.
« no previous file with comments | « ppapi/proxy/flash_menu_resource.h ('k') | ppapi/proxy/gamepad_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698