| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 int64 offset, | 43 int64 offset, |
| 44 storage::FileSystemContext* context) override; | 44 storage::FileSystemContext* context) override; |
| 45 virtual storage::WatcherManager* GetWatcherManager( | 45 virtual storage::WatcherManager* GetWatcherManager( |
| 46 const storage::FileSystemURL& url) override; | 46 const storage::FileSystemURL& url) override; |
| 47 virtual void GetRedirectURLForContents( | 47 virtual void GetRedirectURLForContents( |
| 48 const storage::FileSystemURL& url, | 48 const storage::FileSystemURL& url, |
| 49 const storage::URLCallback& callback) override; | 49 const storage::URLCallback& callback) override; |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 scoped_ptr<storage::AsyncFileUtil> async_file_util_; | 52 scoped_ptr<storage::AsyncFileUtil> async_file_util_; |
| 53 scoped_ptr<storage::WatcherManager> watcher_manager_; |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(BackendDelegate); | 55 DISALLOW_COPY_AND_ASSIGN(BackendDelegate); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 } // namespace file_system_provider | 58 } // namespace file_system_provider |
| 58 } // namespace chromeos | 59 } // namespace chromeos |
| 59 | 60 |
| 60 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE
_H_ | 61 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE
_H_ |
| OLD | NEW |