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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_mount.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_manager/private_api_mount.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
index c0f680cf1d6851bc9e7472b08d82e2401a9d4f15..bde0ba75b7cfeee62c7fcb002c51dd795dcd4ced 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
@@ -31,7 +31,7 @@ class FileManagerPrivateAddMountFunction : public LoggedAsyncExtensionFunction {
virtual ~FileManagerPrivateAddMountFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
// Part of Run(). Called after GetFile for Drive File System.
@@ -59,7 +59,7 @@ class FileManagerPrivateRemoveMountFunction
virtual ~FileManagerPrivateRemoveMountFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
// Implements chrome.fileManagerPrivate.getVolumeMetadataList method.
@@ -73,7 +73,7 @@ class FileManagerPrivateGetVolumeMetadataListFunction
virtual ~FileManagerPrivateGetVolumeMetadataListFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698