| 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);
|
|
|