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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.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
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/file_browser_private_api.h
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_browser_private_api.h
index 6e58c8420579595804b97203e574ed53e8c148e0..a4fd9119ac12c8b0488a389b5141238f21e2e956 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.h
@@ -441,12 +441,12 @@ class GetGDataFilePropertiesFunction : public FileBrowserFunction {
// file path and update its the properties.
virtual void DoOperation(const FilePath& file_path,
base::DictionaryValue* properties,
- scoped_ptr<gdata::GDataEntryProto> entry_proto);
+ scoped_ptr<gdata::DriveEntryProto> entry_proto);
void OnOperationComplete(const FilePath& file_path,
base::DictionaryValue* properties,
gdata::GDataFileError error,
- scoped_ptr<gdata::GDataEntryProto> entry_proto);
+ scoped_ptr<gdata::DriveEntryProto> entry_proto);
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
@@ -458,11 +458,11 @@ class GetGDataFilePropertiesFunction : public FileBrowserFunction {
void OnGetFileInfo(const FilePath& file_path,
base::DictionaryValue* property_dict,
gdata::GDataFileError error,
- scoped_ptr<gdata::GDataEntryProto> entry_proto);
+ scoped_ptr<gdata::DriveEntryProto> entry_proto);
void CacheStateReceived(base::DictionaryValue* property_dict,
bool success,
- const gdata::GDataCacheEntry& cache_entry);
+ const gdata::DriveCacheEntry& cache_entry);
size_t current_index_;
base::ListValue* path_list_;
@@ -492,12 +492,12 @@ class PinGDataFileFunction : public GetGDataFilePropertiesFunction {
virtual void DoOperation(
const FilePath& file_path,
base::DictionaryValue* properties,
- scoped_ptr<gdata::GDataEntryProto> entry_proto) OVERRIDE;
+ scoped_ptr<gdata::DriveEntryProto> entry_proto) OVERRIDE;
// Callback for SetPinState. Updates properties with error.
void OnPinStateSet(const FilePath& path,
base::DictionaryValue* properties,
- scoped_ptr<gdata::GDataEntryProto> entry_proto,
+ scoped_ptr<gdata::DriveEntryProto> entry_proto,
gdata::GDataFileError error,
const std::string& resource_id,
const std::string& md5);
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698