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

Unified Diff: content/renderer/pepper/ppb_widget_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts 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
Index: content/renderer/pepper/ppb_widget_impl.h
diff --git a/content/renderer/pepper/ppb_widget_impl.h b/content/renderer/pepper/ppb_widget_impl.h
index db6feb34e51ff8612418a175fd538c50ac7c6856..f8f02623d7c30118d7e8177b59a02d0bd201d686 100644
--- a/content/renderer/pepper/ppb_widget_impl.h
+++ b/content/renderer/pepper/ppb_widget_impl.h
@@ -28,14 +28,14 @@ class PPB_Widget_Impl : public ppapi::Resource,
explicit PPB_Widget_Impl(PP_Instance instance);
// Resource overrides.
- virtual ppapi::thunk::PPB_Widget_API* AsPPB_Widget_API() OVERRIDE;
+ virtual ppapi::thunk::PPB_Widget_API* AsPPB_Widget_API() override;
// PPB_WidgetAPI implementation.
- virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource) OVERRIDE;
- virtual PP_Bool HandleEvent(PP_Resource pp_input_event) OVERRIDE;
- virtual PP_Bool GetLocation(PP_Rect* location) OVERRIDE;
- virtual void SetLocation(const PP_Rect* location) OVERRIDE;
- virtual void SetScale(float scale) OVERRIDE;
+ virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource) override;
+ virtual PP_Bool HandleEvent(PP_Resource pp_input_event) override;
+ virtual PP_Bool GetLocation(PP_Rect* location) override;
+ virtual void SetLocation(const PP_Rect* location) override;
+ virtual void SetScale(float scale) override;
// Notifies the plugin instance that the given rect needs to be repainted.
void Invalidate(const PP_Rect* dirty);
« no previous file with comments | « content/renderer/pepper/ppb_video_decoder_impl.h ('k') | content/renderer/pepper/renderer_ppapi_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698