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

Unified Diff: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/extensions/file_system_provider/file_system_provider_api.h
diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
index 3085ecc6b86e62ac78760f222a0edaf9b796c2e4..c2df097c9199e96988ee66762e91a46f11479870 100644
--- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
+++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
@@ -17,7 +17,7 @@ class FileSystemProviderMountFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemProviderMountFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
@@ -27,7 +27,7 @@ class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemProviderUnmountFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class FileSystemProviderGetAllFunction : public ChromeSyncExtensionFunction {
@@ -37,7 +37,7 @@ class FileSystemProviderGetAllFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemProviderGetAllFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class FileSystemProviderInternalUnmountRequestedSuccessFunction
@@ -49,7 +49,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalUnmountRequestedSuccessFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
@@ -61,7 +61,7 @@ class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
@@ -73,7 +73,7 @@ class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalReadDirectoryRequestedSuccessFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
class FileSystemProviderInternalReadFileRequestedSuccessFunction
@@ -85,7 +85,7 @@ class FileSystemProviderInternalReadFileRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalReadFileRequestedSuccessFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
class FileSystemProviderInternalOperationRequestedSuccessFunction
@@ -97,7 +97,7 @@ class FileSystemProviderInternalOperationRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalOperationRequestedSuccessFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
class FileSystemProviderInternalOperationRequestedErrorFunction
@@ -109,7 +109,7 @@ class FileSystemProviderInternalOperationRequestedErrorFunction
protected:
virtual ~FileSystemProviderInternalOperationRequestedErrorFunction() {}
- virtual bool RunWhenValid() OVERRIDE;
+ virtual bool RunWhenValid() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698