| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_DRIVE_FILE_SYSTEM_PROXY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_PROXY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_PROXY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_PROXY_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/drive/file_errors.h" | 8 #include "chrome/browser/chromeos/drive/file_errors.h" |
| 9 #include "webkit/fileapi/remote_file_system_proxy.h" | 9 #include "webkit/browser/fileapi/remote_file_system_proxy.h" |
| 10 | 10 |
| 11 namespace fileapi { | 11 namespace fileapi { |
| 12 class FileSystemURL; | 12 class FileSystemURL; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace drive { | 15 namespace drive { |
| 16 | 16 |
| 17 class FileSystemInterface; | 17 class FileSystemInterface; |
| 18 class ResourceEntry; | 18 class ResourceEntry; |
| 19 | 19 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 // Returns |file_system_| on UI thread. | 207 // Returns |file_system_| on UI thread. |
| 208 FileSystemInterface* GetFileSystemOnUIThread(); | 208 FileSystemInterface* GetFileSystemOnUIThread(); |
| 209 | 209 |
| 210 FileSystemInterface* file_system_; | 210 FileSystemInterface* file_system_; |
| 211 }; | 211 }; |
| 212 | 212 |
| 213 } // namespace chromeos | 213 } // namespace chromeos |
| 214 | 214 |
| 215 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_PROXY_H_ | 215 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_PROXY_H_ |
| OLD | NEW |