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

Unified Diff: ppapi/proxy/file_chooser_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/dispatcher.h ('k') | ppapi/proxy/file_io_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_chooser_resource.h
diff --git a/ppapi/proxy/file_chooser_resource.h b/ppapi/proxy/file_chooser_resource.h
index b744e917fcecc9b1e013aa5d399c926eec794c8a..c60f99d94c24f71200d26233d540437571ff5097 100644
--- a/ppapi/proxy/file_chooser_resource.h
+++ b/ppapi/proxy/file_chooser_resource.h
@@ -32,22 +32,22 @@ class PPAPI_PROXY_EXPORT FileChooserResource
virtual ~FileChooserResource();
// Resource overrides.
- virtual thunk::PPB_FileChooser_API* AsPPB_FileChooser_API() OVERRIDE;
+ virtual thunk::PPB_FileChooser_API* AsPPB_FileChooser_API() override;
// PPB_FileChooser_API.
virtual int32_t Show(const PP_ArrayOutput& output,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t ShowWithoutUserGesture(
PP_Bool save_as,
PP_Var suggested_file_name,
const PP_ArrayOutput& output,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual int32_t Show0_5(scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual PP_Resource GetNextChosenFile() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual int32_t Show0_5(scoped_refptr<TrackedCallback> callback) override;
+ virtual PP_Resource GetNextChosenFile() override;
virtual int32_t ShowWithoutUserGesture0_5(
PP_Bool save_as,
PP_Var suggested_file_name,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
// Parses the accept string into the given vector.
static void PopulateAcceptTypes(const std::string& input,
« no previous file with comments | « ppapi/proxy/dispatcher.h ('k') | ppapi/proxy/file_io_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698