| 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;
|
|
|