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

Unified Diff: ppapi/proxy/file_ref_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/file_io_resource.h ('k') | ppapi/proxy/file_system_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_ref_resource.h
diff --git a/ppapi/proxy/file_ref_resource.h b/ppapi/proxy/file_ref_resource.h
index 6db04accabc7da5cdc4217598ef84435385b0d2c..59e7b7c968493107819a74b359990582422b434b 100644
--- a/ppapi/proxy/file_ref_resource.h
+++ b/ppapi/proxy/file_ref_resource.h
@@ -31,34 +31,33 @@ class PPAPI_PROXY_EXPORT FileRefResource
PP_Instance instance,
const FileRefCreateInfo& info);
- virtual ~FileRefResource();
+ ~FileRefResource() override;
// Resource implementation.
- virtual thunk::PPB_FileRef_API* AsPPB_FileRef_API() override;
+ thunk::PPB_FileRef_API* AsPPB_FileRef_API() override;
// PPB_FileRef_API implementation.
- virtual PP_FileSystemType GetFileSystemType() const override;
- virtual PP_Var GetName() const override;
- virtual PP_Var GetPath() const override;
- virtual PP_Resource GetParent() override;
- virtual int32_t MakeDirectory(
- int32_t make_directory_flags,
- scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t Touch(PP_Time last_access_time,
- PP_Time last_modified_time,
- scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t Delete(scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t Rename(PP_Resource new_file_ref,
- scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t Query(PP_FileInfo* info,
+ PP_FileSystemType GetFileSystemType() const override;
+ PP_Var GetName() const override;
+ PP_Var GetPath() const override;
+ PP_Resource GetParent() override;
+ int32_t MakeDirectory(int32_t make_directory_flags,
scoped_refptr<TrackedCallback> callback) override;
- virtual int32_t ReadDirectoryEntries(
+ int32_t Touch(PP_Time last_access_time,
+ PP_Time last_modified_time,
+ scoped_refptr<TrackedCallback> callback) override;
+ int32_t Delete(scoped_refptr<TrackedCallback> callback) override;
+ int32_t Rename(PP_Resource new_file_ref,
+ scoped_refptr<TrackedCallback> callback) override;
+ int32_t Query(PP_FileInfo* info,
+ scoped_refptr<TrackedCallback> callback) override;
+ int32_t ReadDirectoryEntries(
const PP_ArrayOutput& output,
scoped_refptr<TrackedCallback> callback) override;
- virtual const FileRefCreateInfo& GetCreateInfo() const override;
+ const FileRefCreateInfo& GetCreateInfo() const override;
// Private API
- virtual PP_Var GetAbsolutePath() override;
+ PP_Var GetAbsolutePath() override;
private:
FileRefResource(Connection connection,
« no previous file with comments | « ppapi/proxy/file_io_resource.h ('k') | ppapi/proxy/file_system_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698