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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
index 29a74ad606cf99d2d311d667e780f3b7e2890ee1..a8f90f7d1617fc5159d852dd54e1ca84f7ea6909 100644
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
@@ -31,7 +31,7 @@ class SyncFileSystemDeleteFileSystemFunction
protected:
virtual ~SyncFileSystemDeleteFileSystemFunction() {}
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void DidDeleteFileSystem(base::File::Error error);
@@ -45,7 +45,7 @@ class SyncFileSystemGetFileStatusFunction
protected:
virtual ~SyncFileSystemGetFileStatusFunction() {}
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void DidGetFileStatus(
@@ -62,7 +62,7 @@ class SyncFileSystemGetFileStatusesFunction
protected:
virtual ~SyncFileSystemGetFileStatusesFunction();
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
typedef std::pair<sync_file_system::SyncStatusCode,
@@ -88,7 +88,7 @@ class SyncFileSystemGetUsageAndQuotaFunction
protected:
virtual ~SyncFileSystemGetUsageAndQuotaFunction() {}
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void DidGetUsageAndQuota(storage::QuotaStatusCode status,
@@ -104,7 +104,7 @@ class SyncFileSystemRequestFileSystemFunction
protected:
virtual ~SyncFileSystemRequestFileSystemFunction() {}
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
typedef SyncFileSystemRequestFileSystemFunction self;
@@ -125,7 +125,7 @@ class SyncFileSystemSetConflictResolutionPolicyFunction
protected:
virtual ~SyncFileSystemSetConflictResolutionPolicyFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class SyncFileSystemGetConflictResolutionPolicyFunction
@@ -136,7 +136,7 @@ class SyncFileSystemGetConflictResolutionPolicyFunction
protected:
virtual ~SyncFileSystemGetConflictResolutionPolicyFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class SyncFileSystemGetServiceStatusFunction
@@ -147,7 +147,7 @@ class SyncFileSystemGetServiceStatusFunction
protected:
virtual ~SyncFileSystemGetServiceStatusFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698