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

Unified Diff: ppapi/proxy/file_ref_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/file_mapping_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 0437b23ab942d8b583822c8ee48be972e87a21e8..6db04accabc7da5cdc4217598ef84435385b0d2c 100644
--- a/ppapi/proxy/file_ref_resource.h
+++ b/ppapi/proxy/file_ref_resource.h
@@ -34,31 +34,31 @@ class PPAPI_PROXY_EXPORT FileRefResource
virtual ~FileRefResource();
// Resource implementation.
- virtual thunk::PPB_FileRef_API* AsPPB_FileRef_API() OVERRIDE;
+ virtual 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 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;
+ 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;
+ 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;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t Query(PP_FileInfo* info,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t ReadDirectoryEntries(
const PP_ArrayOutput& output,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual const FileRefCreateInfo& GetCreateInfo() const OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual const FileRefCreateInfo& GetCreateInfo() const override;
// Private API
- virtual PP_Var GetAbsolutePath() OVERRIDE;
+ virtual PP_Var GetAbsolutePath() override;
private:
FileRefResource(Connection connection,
« no previous file with comments | « ppapi/proxy/file_mapping_resource.h ('k') | ppapi/proxy/file_system_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698