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

Unified Diff: ppapi/proxy/flash_drm_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_clipboard_resource.h ('k') | ppapi/proxy/flash_file_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/flash_drm_resource.h
diff --git a/ppapi/proxy/flash_drm_resource.h b/ppapi/proxy/flash_drm_resource.h
index 53a661192dbefd95ca15c6a9e15d36891fb4adc2..fc773c42a6ce3d8fc8b673aee3274786ac38c68a 100644
--- a/ppapi/proxy/flash_drm_resource.h
+++ b/ppapi/proxy/flash_drm_resource.h
@@ -23,19 +23,19 @@ class FlashDRMResource
public:
FlashDRMResource(Connection connection,
PP_Instance instance);
- virtual ~FlashDRMResource();
+ ~FlashDRMResource() override;
// Resource override.
- virtual thunk::PPB_Flash_DRM_API* AsPPB_Flash_DRM_API() override;
+ thunk::PPB_Flash_DRM_API* AsPPB_Flash_DRM_API() override;
// PPB_Flash_DRM_API implementation.
- virtual int32_t GetDeviceID(PP_Var* id,
- scoped_refptr<TrackedCallback> callback) override;
- virtual PP_Bool GetHmonitor(int64_t* hmonitor) override;
- virtual int32_t GetVoucherFile(
+ int32_t GetDeviceID(PP_Var* id,
+ scoped_refptr<TrackedCallback> callback) override;
+ PP_Bool GetHmonitor(int64_t* hmonitor) override;
+ int32_t GetVoucherFile(
PP_Resource* file_ref,
scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t MonitorIsExternal(
+ int32_t MonitorIsExternal(
PP_Bool* is_external,
scoped_refptr<TrackedCallback> callback) override;
« no previous file with comments | « ppapi/proxy/flash_clipboard_resource.h ('k') | ppapi/proxy/flash_file_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698