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

Unified Diff: ppapi/proxy/file_io_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_chooser_resource.h ('k') | ppapi/proxy/file_mapping_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_io_resource.h
diff --git a/ppapi/proxy/file_io_resource.h b/ppapi/proxy/file_io_resource.h
index c9e15df01dbaa7a2b375982ad0a75203a5496b7c..fed4cae70ac08dceab4e1dd18aeab963b30b9e92 100644
--- a/ppapi/proxy/file_io_resource.h
+++ b/ppapi/proxy/file_io_resource.h
@@ -33,41 +33,41 @@ class PPAPI_PROXY_EXPORT FileIOResource
virtual ~FileIOResource();
// Resource overrides.
- virtual thunk::PPB_FileIO_API* AsPPB_FileIO_API() OVERRIDE;
+ virtual thunk::PPB_FileIO_API* AsPPB_FileIO_API() override;
// PPB_FileIO_API implementation.
virtual int32_t Open(PP_Resource file_ref,
int32_t open_flags,
- 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 Touch(PP_Time last_access_time,
PP_Time last_modified_time,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t Read(int64_t offset,
char* buffer,
int32_t bytes_to_read,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t ReadToArray(int64_t offset,
int32_t max_read_length,
PP_ArrayOutput* array_output,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t Write(int64_t offset,
const char* buffer,
int32_t bytes_to_write,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t SetLength(int64_t length,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual int64_t GetMaxWrittenOffset() const OVERRIDE;
- virtual int64_t GetAppendModeWriteAmount() const OVERRIDE;
- virtual void SetMaxWrittenOffset(int64_t max_written_offset) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual int64_t GetMaxWrittenOffset() const override;
+ virtual int64_t GetAppendModeWriteAmount() const override;
+ virtual void SetMaxWrittenOffset(int64_t max_written_offset) override;
virtual void SetAppendModeWriteAmount(
- int64_t append_mode_write_amount) OVERRIDE;
- virtual int32_t Flush(scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual void Close() OVERRIDE;
+ int64_t append_mode_write_amount) override;
+ virtual int32_t Flush(scoped_refptr<TrackedCallback> callback) override;
+ virtual void Close() override;
virtual int32_t RequestOSFileHandle(
PP_FileHandle* handle,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
// FileHolder is used to guarantee that file operations will have a valid FD
// to operate on, even if they're in a different thread.
« no previous file with comments | « ppapi/proxy/file_chooser_resource.h ('k') | ppapi/proxy/file_mapping_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698