| 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/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" | 11 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" |
| 12 | 12 |
| 13 namespace storage { | 13 namespace storage { |
| 14 class AsyncFileUtil; | 14 class AsyncFileUtil; |
| 15 class FileSystemContext; | 15 class FileSystemContext; |
| 16 class FileStreamReader; | 16 class FileStreamReader; |
| 17 class FileSystemURL; | 17 class FileSystemURL; |
| 18 class FileStreamWriter; | 18 class FileStreamWriter; |
| 19 class WatcherManager; | 19 class WatcherManager; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 50 private: | 50 private: |
| 51 scoped_ptr<storage::AsyncFileUtil> async_file_util_; | 51 scoped_ptr<storage::AsyncFileUtil> async_file_util_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(BackendDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(BackendDelegate); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace file_system_provider | 56 } // namespace file_system_provider |
| 57 } // namespace chromeos | 57 } // namespace chromeos |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE
_H_ | 59 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FILEAPI_BACKEND_DELEGATE
_H_ |
| OLD | NEW |