| 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_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h" | 8 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h" |
| 9 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" | 9 #include "chrome/browser/google_api/gdata_errorcode.h" |
| 10 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h" | 10 #include "webkit/chromeos/fileapi/remote_file_system_proxy.h" |
| 11 | 11 |
| 12 namespace fileapi { | 12 namespace fileapi { |
| 13 class FileSystemURL; | 13 class FileSystemURL; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace gdata { | 16 namespace gdata { |
| 17 | 17 |
| 18 class DriveEntryProto; | 18 class DriveEntryProto; |
| 19 class DriveFileSystemInterface; | 19 class DriveFileSystemInterface; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 // DriveFileSystem is owned by Profile, which outlives DriveFileSystemProxy, | 188 // DriveFileSystem is owned by Profile, which outlives DriveFileSystemProxy, |
| 189 // which is owned by CrosMountPointProvider (i.e. by the time Profile is | 189 // which is owned by CrosMountPointProvider (i.e. by the time Profile is |
| 190 // removed, the file manager is already gone). Hence it's safe to use this as | 190 // removed, the file manager is already gone). Hence it's safe to use this as |
| 191 // a raw pointer. | 191 // a raw pointer. |
| 192 DriveFileSystemInterface* file_system_; | 192 DriveFileSystemInterface* file_system_; |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 } // namespace chromeos | 195 } // namespace chromeos |
| 196 | 196 |
| 197 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ | 197 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_PROXY_H_ |
| OLD | NEW |