Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / file_system_provider / fileapi / backend_delegate.h
index 5210403..4b732d1 100644 (file)
@@ -31,25 +31,26 @@ class BackendDelegate : public chromeos::FileSystemBackendDelegate {
 
   // FileSystemBackend::Delegate overrides.
   virtual storage::AsyncFileUtil* GetAsyncFileUtil(
-      storage::FileSystemType type) OVERRIDE;
+      storage::FileSystemType type) 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) OVERRIDE;
+      storage::FileSystemContext* context) override;
   virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
       const storage::FileSystemURL& url,
       int64 offset,
-      storage::FileSystemContext* context) OVERRIDE;
+      storage::FileSystemContext* context) override;
   virtual storage::WatcherManager* GetWatcherManager(
-      const storage::FileSystemURL& url) OVERRIDE;
+      storage::FileSystemType type) override;
   virtual void GetRedirectURLForContents(
       const storage::FileSystemURL& url,
-      const storage::URLCallback& callback) OVERRIDE;
+      const storage::URLCallback& callback) override;
 
  private:
   scoped_ptr<storage::AsyncFileUtil> async_file_util_;
+  scoped_ptr<storage::WatcherManager> watcher_manager_;
 
   DISALLOW_COPY_AND_ASSIGN(BackendDelegate);
 };