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

Unified Diff: ppapi/proxy/file_system_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_ref_resource.h ('k') | ppapi/proxy/flash_clipboard_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_system_resource.h
diff --git a/ppapi/proxy/file_system_resource.h b/ppapi/proxy/file_system_resource.h
index fef6b0b2a59d883001fc7b9881db73db688e36b0..5b35f86d7bdefd71ef49efc2936fb3a30e25d437 100644
--- a/ppapi/proxy/file_system_resource.h
+++ b/ppapi/proxy/file_system_resource.h
@@ -42,20 +42,20 @@ class PPAPI_PROXY_EXPORT FileSystemResource
int pending_renderer_id,
int pending_browser_id,
PP_FileSystemType type);
- virtual ~FileSystemResource();
+ ~FileSystemResource() override;
// Resource overrides.
- virtual thunk::PPB_FileSystem_API* AsPPB_FileSystem_API() override;
+ thunk::PPB_FileSystem_API* AsPPB_FileSystem_API() override;
// PPB_FileSystem_API implementation.
- virtual int32_t Open(int64_t expected_size,
- scoped_refptr<TrackedCallback> callback) override;
- virtual PP_FileSystemType GetType() override;
- virtual void OpenQuotaFile(PP_Resource file_io) override;
- virtual void CloseQuotaFile(PP_Resource file_io) override;
+ int32_t Open(int64_t expected_size,
+ scoped_refptr<TrackedCallback> callback) override;
+ PP_FileSystemType GetType() override;
+ void OpenQuotaFile(PP_Resource file_io) override;
+ void CloseQuotaFile(PP_Resource file_io) override;
typedef base::Callback<void(int64_t)> RequestQuotaCallback;
- virtual int64_t RequestQuota(int64_t amount,
- const RequestQuotaCallback& callback) override;
+ int64_t RequestQuota(int64_t amount,
+ const RequestQuotaCallback& callback) override;
int32_t InitIsolatedFileSystem(const std::string& fsid,
PP_IsolatedFileSystemType_Private type,
« no previous file with comments | « ppapi/proxy/file_ref_resource.h ('k') | ppapi/proxy/flash_clipboard_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698