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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.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_file_system.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
index 2048f536ad69974d8e0fcb288c1c5045cdbd2594..ea48c38cc232ae28c3809930000bb1fc23dc8230 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
@@ -42,7 +42,7 @@ class FileManagerPrivateRequestFileSystemFunction
virtual ~FileManagerPrivateRequestFileSystemFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void RespondSuccessOnUIThread(const std::string& name,
@@ -81,7 +81,7 @@ class FileWatchFunctionBase : public LoggedAsyncExtensionFunction {
const std::string& extension_id) = 0;
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
// Calls SendResponse() with |success| converted to base::Value.
void Respond(bool success);
@@ -101,7 +101,7 @@ class FileManagerPrivateAddFileWatchFunction : public FileWatchFunctionBase {
virtual void PerformFileWatchOperation(
const base::FilePath& local_path,
const base::FilePath& virtual_path,
- const std::string& extension_id) OVERRIDE;
+ const std::string& extension_id) override;
};
@@ -119,7 +119,7 @@ class FileManagerPrivateRemoveFileWatchFunction : public FileWatchFunctionBase {
virtual void PerformFileWatchOperation(
const base::FilePath& local_path,
const base::FilePath& virtual_path,
- const std::string& extension_id) OVERRIDE;
+ const std::string& extension_id) override;
};
// Implements the chrome.fileManagerPrivate.getSizeStats method.
@@ -133,7 +133,7 @@ class FileManagerPrivateGetSizeStatsFunction
virtual ~FileManagerPrivateGetSizeStatsFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void GetDriveAvailableSpaceCallback(drive::FileError error,
@@ -157,7 +157,7 @@ class FileManagerPrivateValidatePathNameLengthFunction
void OnFilePathLimitRetrieved(size_t current_length, size_t max_length);
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
// Implements the chrome.fileManagerPrivate.formatVolume method.
@@ -172,7 +172,7 @@ class FileManagerPrivateFormatVolumeFunction
virtual ~FileManagerPrivateFormatVolumeFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
// Implements the chrome.fileManagerPrivate.startCopy method.
@@ -186,7 +186,7 @@ class FileManagerPrivateStartCopyFunction
virtual ~FileManagerPrivateStartCopyFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
// Part of RunAsync(). Called after Copy() is started on IO thread.
@@ -204,7 +204,7 @@ class FileManagerPrivateCancelCopyFunction
virtual ~FileManagerPrivateCancelCopyFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
// Implements the chrome.fileManagerPrivateInternal.resolveIsolatedEntries
@@ -220,7 +220,7 @@ class FileManagerPrivateInternalResolveIsolatedEntriesFunction
virtual ~FileManagerPrivateInternalResolveIsolatedEntriesFunction() {}
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void RunAsyncAfterConvertFileDefinitionListToEntryDefinitionList(scoped_ptr<

Powered by Google App Engine
This is Rietveld 408576698