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

Unified Diff: chrome/browser/chromeos/fileapi/file_system_backend.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/fileapi/file_system_backend.h
diff --git a/chrome/browser/chromeos/fileapi/file_system_backend.h b/chrome/browser/chromeos/fileapi/file_system_backend.h
index 9220e89e529d2c06eb1f1826d10a2a84e0e6c03f..838c2235dbd0df86f5062e634414b58bae6201c6 100644
--- a/chrome/browser/chromeos/fileapi/file_system_backend.h
+++ b/chrome/browser/chromeos/fileapi/file_system_backend.h
@@ -88,60 +88,60 @@ class FileSystemBackend : public storage::ExternalFileSystemBackend {
static bool CanHandleURL(const storage::FileSystemURL& url);
// storage::FileSystemBackend overrides.
- virtual bool CanHandleType(storage::FileSystemType type) const OVERRIDE;
- virtual void Initialize(storage::FileSystemContext* context) OVERRIDE;
+ virtual bool CanHandleType(storage::FileSystemType type) const override;
+ virtual void Initialize(storage::FileSystemContext* context) override;
virtual void ResolveURL(const storage::FileSystemURL& url,
storage::OpenFileSystemMode mode,
- const OpenFileSystemCallback& callback) OVERRIDE;
+ const OpenFileSystemCallback& callback) override;
virtual storage::AsyncFileUtil* GetAsyncFileUtil(
- storage::FileSystemType type) OVERRIDE;
+ storage::FileSystemType type) override;
virtual storage::WatcherManager* GetWatcherManager(
- storage::FileSystemType type) OVERRIDE;
+ storage::FileSystemType type) override;
virtual storage::CopyOrMoveFileValidatorFactory*
GetCopyOrMoveFileValidatorFactory(storage::FileSystemType type,
- base::File::Error* error_code) OVERRIDE;
+ base::File::Error* error_code) override;
virtual storage::FileSystemOperation* CreateFileSystemOperation(
const storage::FileSystemURL& url,
storage::FileSystemContext* context,
- base::File::Error* error_code) const OVERRIDE;
+ base::File::Error* error_code) const override;
virtual bool SupportsStreaming(
- const storage::FileSystemURL& url) const OVERRIDE;
+ const storage::FileSystemURL& url) const override;
virtual bool HasInplaceCopyImplementation(
- storage::FileSystemType type) const OVERRIDE;
+ storage::FileSystemType type) const override;
virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
const storage::FileSystemURL& path,
int64 offset,
int64 max_bytes_to_read,
const base::Time& expected_modification_time,
- storage::FileSystemContext* context) const OVERRIDE;
+ storage::FileSystemContext* context) const override;
virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
const storage::FileSystemURL& url,
int64 offset,
- storage::FileSystemContext* context) const OVERRIDE;
- virtual storage::FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
+ storage::FileSystemContext* context) const override;
+ virtual storage::FileSystemQuotaUtil* GetQuotaUtil() override;
virtual const storage::UpdateObserverList* GetUpdateObservers(
- storage::FileSystemType type) const OVERRIDE;
+ storage::FileSystemType type) const override;
virtual const storage::ChangeObserverList* GetChangeObservers(
- storage::FileSystemType type) const OVERRIDE;
+ storage::FileSystemType type) const override;
virtual const storage::AccessObserverList* GetAccessObservers(
- storage::FileSystemType type) const OVERRIDE;
+ storage::FileSystemType type) const override;
// storage::ExternalFileSystemBackend overrides.
virtual bool IsAccessAllowed(
- const storage::FileSystemURL& url) const OVERRIDE;
- virtual std::vector<base::FilePath> GetRootDirectories() const OVERRIDE;
+ const storage::FileSystemURL& url) const override;
+ virtual std::vector<base::FilePath> GetRootDirectories() const override;
virtual void GrantFullAccessToExtension(
- const std::string& extension_id) OVERRIDE;
+ const std::string& extension_id) override;
virtual void GrantFileAccessToExtension(
const std::string& extension_id,
- const base::FilePath& virtual_path) OVERRIDE;
+ const base::FilePath& virtual_path) override;
virtual void RevokeAccessForExtension(
- const std::string& extension_id) OVERRIDE;
+ const std::string& extension_id) override;
virtual bool GetVirtualPath(const base::FilePath& filesystem_path,
- base::FilePath* virtual_path) OVERRIDE;
+ base::FilePath* virtual_path) override;
virtual void GetRedirectURLForContents(
const storage::FileSystemURL& url,
- const storage::URLCallback& callback) OVERRIDE;
+ const storage::URLCallback& callback) override;
private:
scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_;

Powered by Google App Engine
This is Rietveld 408576698