Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(944)

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_proxy.h

Issue 10836354: Rename GData* to Drive* in gdata.proto (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for comments. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_file_system_interface.h ('k') | chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698