| 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_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_UTIL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_UTIL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/files/file_path.h" |
| 11 #include "chrome/browser/chromeos/drive/file_errors.h" | 12 #include "chrome/browser/chromeos/drive/file_errors.h" |
| 12 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 13 | 14 |
| 14 class Profile; | 15 class Profile; |
| 15 | 16 |
| 16 namespace base { | |
| 17 class FilePath; | |
| 18 } | |
| 19 | |
| 20 namespace fileapi { | 17 namespace fileapi { |
| 21 class FileSystemURL; | 18 class FileSystemURL; |
| 22 } | 19 } |
| 23 | 20 |
| 24 namespace drive { | 21 namespace drive { |
| 25 | 22 |
| 26 class DriveAppRegistry; | 23 class DriveAppRegistry; |
| 27 class DriveServiceInterface; | 24 class DriveServiceInterface; |
| 28 class FileSystemInterface; | 25 class FileSystemInterface; |
| 29 | 26 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 DRIVE_CONNECTED, | 209 DRIVE_CONNECTED, |
| 213 }; | 210 }; |
| 214 | 211 |
| 215 // Returns the Drive connection status for the |profile|. | 212 // Returns the Drive connection status for the |profile|. |
| 216 ConnectionStatusType GetDriveConnectionStatus(Profile* profile); | 213 ConnectionStatusType GetDriveConnectionStatus(Profile* profile); |
| 217 | 214 |
| 218 } // namespace util | 215 } // namespace util |
| 219 } // namespace drive | 216 } // namespace drive |
| 220 | 217 |
| 221 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_UTIL_H_ | 218 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_UTIL_H_ |
| OLD | NEW |