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

Unified Diff: chrome/browser/chromeos/drive/drive_url_request_job.h

Issue 13401003: chromeos: Replace resource ID in drive URL with path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unneeded include Created 7 years, 8 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/drive/drive_url_request_job.h
diff --git a/chrome/browser/chromeos/drive/drive_url_request_job.h b/chrome/browser/chromeos/drive/drive_url_request_job.h
index 67eed2fd8b52404266ed7ecb5de6539f257d871f..2a911d7d49df0cc8ef407dfc8995c6fef23a66f0 100644
--- a/chrome/browser/chromeos/drive/drive_url_request_job.h
+++ b/chrome/browser/chromeos/drive/drive_url_request_job.h
@@ -90,11 +90,9 @@ class DriveURLRequestJob : public net::URLRequestJob {
// Helper callback for handling result of file_util::GetFileSize().
void OnGetFileSize(int64 *file_size, bool success);
- // Helper callback for GetEntryInfoByResourceId invoked by Start().
- void OnGetEntryInfoByResourceId(const std::string& resource_id,
- DriveFileError error,
- const base::FilePath& drive_file_path,
- scoped_ptr<DriveEntryProto> entry_proto);
+ // Helper callback for GetEntryInfoByPath invoked by Start().
+ void OnGetEntryInfoByPath(DriveFileError error,
+ scoped_ptr<DriveEntryProto> entry_proto);
// Helper methods for ReadRawData to open file and read from its corresponding
// stream in a streaming fashion.

Powered by Google App Engine
This is Rietveld 408576698