Index: ash/system/tray/system_tray_delegate.h |
diff --git a/ash/system/tray/system_tray_delegate.h b/ash/system/tray/system_tray_delegate.h |
index 6f6cab8d392ff4c2e883b6b818d9394b91f63014..2e8dd4f4ade39f4cef1ad21feb3b7157bd9ac353 100644 |
--- a/ash/system/tray/system_tray_delegate.h |
+++ b/ash/system/tray/system_tray_delegate.h |
@@ -70,7 +70,7 @@ struct ASH_EXPORT DriveOperationStatus { |
~DriveOperationStatus(); |
// File path. |
- FilePath file_path; |
+ base::FilePath file_path; |
// Current operation completion progress [0.0 - 1.0]. |
double progress; |
OperationType type; |
@@ -220,7 +220,7 @@ class SystemTrayDelegate { |
virtual void ActivateIMEProperty(const std::string& key) = 0; |
// Cancels ongoing drive operation. |
- virtual void CancelDriveOperation(const FilePath& file_path) = 0; |
+ virtual void CancelDriveOperation(const base::FilePath& file_path) = 0; |
// Returns information about the ongoing drive operations. |
virtual void GetDriveOperationStatusList( |