| 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<
|
|
|