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

Unified Diff: ppapi/proxy/file_chooser_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/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 c60f99d94c24f71200d26233d540437571ff5097..0347fb07339008fa8ec2328dd788d1f0ec64d352 100644
--- a/ppapi/proxy/file_chooser_resource.h
+++ b/ppapi/proxy/file_chooser_resource.h
@@ -29,22 +29,22 @@ class PPAPI_PROXY_EXPORT FileChooserResource
PP_Instance instance,
PP_FileChooserMode_Dev mode,
const std::string& accept_types);
- virtual ~FileChooserResource();
+ ~FileChooserResource() override;
// Resource overrides.
- virtual thunk::PPB_FileChooser_API* AsPPB_FileChooser_API() override;
+ thunk::PPB_FileChooser_API* AsPPB_FileChooser_API() override;
// PPB_FileChooser_API.
- virtual int32_t Show(const PP_ArrayOutput& output,
- scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t ShowWithoutUserGesture(
+ int32_t Show(const PP_ArrayOutput& output,
+ scoped_refptr<TrackedCallback> callback) override;
+ 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;
- virtual int32_t ShowWithoutUserGesture0_5(
+ int32_t Show0_5(scoped_refptr<TrackedCallback> callback) override;
+ PP_Resource GetNextChosenFile() override;
+ int32_t ShowWithoutUserGesture0_5(
PP_Bool save_as,
PP_Var suggested_file_name,
scoped_refptr<TrackedCallback> callback) override;
« 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