| Index: chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
|
| index 0afdea3906ec9c0acd0899388e69ee70da2e9e83..217721404a9339019bf92ce40e639c0c0b302532 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
|
| +++ b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.h
|
| @@ -15,9 +15,11 @@ class FileSystemURL;
|
|
|
| namespace gdata {
|
|
|
| -class GDataEntryProto;
|
| +class DriveEntryProto;
|
| class GDataFileSystemInterface;
|
|
|
| +typedef std::vector<DriveEntryProto> DriveEntryProtoVector;
|
| +
|
| // Implementation of File API's remote file system proxy for GData file system.
|
| class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
|
| public:
|
| @@ -100,7 +102,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
|
| const fileapi::FileSystemOperationInterface::GetMetadataCallback&
|
| callback,
|
| GDataFileError error,
|
| - scoped_ptr<GDataEntryProto> entry_proto);
|
| + scoped_ptr<DriveEntryProto> entry_proto);
|
|
|
| // Helper callback for relaying reply for GetEntryInfoByPath() to the
|
| // calling thread.
|
| @@ -109,7 +111,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
|
| const fileapi::FileSystemOperationInterface::SnapshotFileCallback&
|
| callback,
|
| GDataFileError error,
|
| - scoped_ptr<GDataEntryProto> entry_proto);
|
| + scoped_ptr<DriveEntryProto> entry_proto);
|
|
|
| // Helper callback for relaying reply for ReadDirectory() to the calling
|
| // thread.
|
| @@ -118,7 +120,7 @@ class GDataFileSystemProxy : public fileapi::RemoteFileSystemProxyInterface {
|
| callback,
|
| GDataFileError error,
|
| bool hide_hosted_documents,
|
| - scoped_ptr<GDataEntryProtoVector> proto_entries);
|
| + scoped_ptr<DriveEntryProtoVector> proto_entries);
|
|
|
| // Helper callback for relaying reply for CreateWritableSnapshotFile() to
|
| // the calling thread.
|
|
|