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

Unified Diff: ppapi/shared_impl/ppb_view_shared.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
Index: ppapi/shared_impl/ppb_view_shared.h
diff --git a/ppapi/shared_impl/ppb_view_shared.h b/ppapi/shared_impl/ppb_view_shared.h
index b98306959d59126609f70ef7feab6539477b40e2..32bfb35825218caf2f5acdb06b0b0e8b759fcd59 100644
--- a/ppapi/shared_impl/ppb_view_shared.h
+++ b/ppapi/shared_impl/ppb_view_shared.h
@@ -39,18 +39,18 @@ class PPAPI_SHARED_EXPORT PPB_View_Shared : public Resource,
virtual ~PPB_View_Shared();
// Resource overrides.
- virtual thunk::PPB_View_API* AsPPB_View_API() OVERRIDE;
+ virtual thunk::PPB_View_API* AsPPB_View_API() override;
// PPB_View_API implementation.
- virtual const ViewData& GetData() const OVERRIDE;
- virtual PP_Bool GetRect(PP_Rect* viewport) const OVERRIDE;
- virtual PP_Bool IsFullscreen() const OVERRIDE;
- virtual PP_Bool IsVisible() const OVERRIDE;
- virtual PP_Bool IsPageVisible() const OVERRIDE;
- virtual PP_Bool GetClipRect(PP_Rect* clip) const OVERRIDE;
- virtual float GetDeviceScale() const OVERRIDE;
- virtual float GetCSSScale() const OVERRIDE;
- virtual PP_Bool GetScrollOffset(PP_Point* scroll_offset) const OVERRIDE;
+ virtual const ViewData& GetData() const override;
+ virtual PP_Bool GetRect(PP_Rect* viewport) const override;
+ virtual PP_Bool IsFullscreen() const override;
+ virtual PP_Bool IsVisible() const override;
+ virtual PP_Bool IsPageVisible() const override;
+ virtual PP_Bool GetClipRect(PP_Rect* clip) const override;
+ virtual float GetDeviceScale() const override;
+ virtual float GetCSSScale() const override;
+ virtual PP_Bool GetScrollOffset(PP_Point* scroll_offset) const override;
private:
ViewData data_;
« no previous file with comments | « ppapi/shared_impl/ppb_video_decoder_shared.h ('k') | ppapi/shared_impl/private/ppb_x509_certificate_private_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698