Index: chrome/browser/media_galleries/fileapi/media_file_system_backend.h |
diff --git a/chrome/browser/media_galleries/fileapi/media_file_system_backend.h b/chrome/browser/media_galleries/fileapi/media_file_system_backend.h |
index 58276267203a2b53337b90aae5a60973de100920..aa164d041579cb0dae0c8312bc546e79fca924fb 100644 |
--- a/chrome/browser/media_galleries/fileapi/media_file_system_backend.h |
+++ b/chrome/browser/media_galleries/fileapi/media_file_system_backend.h |
@@ -55,43 +55,43 @@ class MediaFileSystemBackend : public storage::FileSystemBackend { |
const base::Callback<void(base::File::Error result)>& callback); |
// FileSystemBackend implementation. |
- 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& url, |
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; |
private: |
// Store the profile path. We need this to create temporary snapshot files. |