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

Unified Diff: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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
Index: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
diff --git a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h b/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
index 8b88a42047d8cec439af1ec46a7123bd323b060c..8bd1053c25141b68e97e9c4bee90ad203beb89ad 100644
--- a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
+++ b/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
@@ -32,25 +32,25 @@ class PepperInternalFileRefBackend : public PepperFileRefBackend {
// PepperFileRefBackend overrides.
virtual int32_t MakeDirectory(ppapi::host::ReplyMessageContext context,
- int32_t make_directory_flags) OVERRIDE;
+ int32_t make_directory_flags) override;
virtual int32_t Touch(ppapi::host::ReplyMessageContext context,
PP_Time last_accessed_time,
- PP_Time last_modified_time) OVERRIDE;
- virtual int32_t Delete(ppapi::host::ReplyMessageContext context) OVERRIDE;
+ PP_Time last_modified_time) override;
+ virtual int32_t Delete(ppapi::host::ReplyMessageContext context) override;
virtual int32_t Rename(ppapi::host::ReplyMessageContext context,
- PepperFileRefHost* new_file_ref) OVERRIDE;
- virtual int32_t Query(ppapi::host::ReplyMessageContext context) OVERRIDE;
+ PepperFileRefHost* new_file_ref) override;
+ virtual int32_t Query(ppapi::host::ReplyMessageContext context) override;
virtual int32_t ReadDirectoryEntries(ppapi::host::ReplyMessageContext context)
- OVERRIDE;
+ override;
virtual int32_t GetAbsolutePath(ppapi::host::ReplyMessageContext context)
- OVERRIDE;
- virtual storage::FileSystemURL GetFileSystemURL() const OVERRIDE;
- virtual base::FilePath GetExternalFilePath() const OVERRIDE;
-
- virtual int32_t CanRead() const OVERRIDE;
- virtual int32_t CanWrite() const OVERRIDE;
- virtual int32_t CanCreate() const OVERRIDE;
- virtual int32_t CanReadWrite() const OVERRIDE;
+ override;
+ virtual storage::FileSystemURL GetFileSystemURL() const override;
+ virtual base::FilePath GetExternalFilePath() const override;
+
+ virtual int32_t CanRead() const override;
+ virtual int32_t CanWrite() const override;
+ virtual int32_t CanCreate() const override;
+ virtual int32_t CanReadWrite() const override;
private:
// Generic reply callback.

Powered by Google App Engine
This is Rietveld 408576698