Index: chrome/browser/chromeos/drive/file_system_interface.h |
diff --git a/chrome/browser/chromeos/drive/file_system_interface.h b/chrome/browser/chromeos/drive/file_system_interface.h |
index e6c766c16566ca33a36bc4d511b86ca67e702751..2c3bc3753a229180c206e5c44ec689f3450d8fb8 100644 |
--- a/chrome/browser/chromeos/drive/file_system_interface.h |
+++ b/chrome/browser/chromeos/drive/file_system_interface.h |
@@ -130,8 +130,8 @@ enum ContextType { |
NUM_CONTEXT_TYPES, |
}; |
-struct DriveClientContext { |
- explicit DriveClientContext(ContextType in_type) : type(in_type) {} |
+struct ClientContext { |
+ explicit ClientContext(ContextType in_type) : type(in_type) {} |
ContextType type; |
}; |
@@ -331,7 +331,7 @@ class FileSystemInterface { |
// |get_content_callback| may be null. |
virtual void GetFileByResourceId( |
const std::string& resource_id, |
- const DriveClientContext& context, |
+ const ClientContext& context, |
const GetFileCallback& get_file_callback, |
const google_apis::GetContentCallback& get_content_callback) = 0; |
@@ -362,7 +362,7 @@ class FileSystemInterface { |
// |callback| must not be null. |
virtual void UpdateFileByResourceId( |
const std::string& resource_id, |
- const DriveClientContext& context, |
+ const ClientContext& context, |
const FileOperationCallback& callback) = 0; |
// Finds an entry (a file or a directory) by |file_path|. This call will also |