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

Unified Diff: chrome/browser/chromeos/drive/drive_file_stream_reader.cc

Issue 881403003: Rename gdata_errorcode.h to drive_api_error_codes.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos in BUILD.gn Created 5 years, 11 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_file_stream_reader.cc
diff --git a/chrome/browser/chromeos/drive/drive_file_stream_reader.cc b/chrome/browser/chromeos/drive/drive_file_stream_reader.cc
index d8661d60d520c519141978e343a40abe4641dd84..db54b0492457b56b519cdf9defbfa1e3b774e62f 100644
--- a/chrome/browser/chromeos/drive/drive_file_stream_reader.cc
+++ b/chrome/browser/chromeos/drive/drive_file_stream_reader.cc
@@ -457,8 +457,9 @@ void DriveFileStreamReader::InitializeAfterLocalFileOpen(
callback.Run(net::OK, entry.Pass());
}
-void DriveFileStreamReader::OnGetContent(google_apis::GDataErrorCode error_code,
- scoped_ptr<std::string> data) {
+void DriveFileStreamReader::OnGetContent(
+ google_apis::DriveApiErrorCode error_code,
+ scoped_ptr<std::string> data) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
DCHECK(reader_proxy_);
reader_proxy_->OnGetContent(data.Pass());

Powered by Google App Engine
This is Rietveld 408576698