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

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

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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
« no previous file with comments | « chrome/browser/chromeos/drive/async_file_util.cc ('k') | chrome/browser/chromeos/drive/file_errors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2a20c566e2772b8253a95bcb7258cefcd2a07934..e9d97b115936e6803b274d78bb759b6c4b637f31 100644
--- a/chrome/browser/chromeos/drive/drive_file_stream_reader.cc
+++ b/chrome/browser/chromeos/drive/drive_file_stream_reader.cc
@@ -26,7 +26,7 @@ namespace {
// Converts FileError code to net::Error code.
int FileErrorToNetError(FileError error) {
- return net::PlatformFileErrorToNetError(FileErrorToPlatformError(error));
+ return net::FileErrorToNetError(FileErrorToBaseFileError(error));
}
// Runs task on UI thread.
« no previous file with comments | « chrome/browser/chromeos/drive/async_file_util.cc ('k') | chrome/browser/chromeos/drive/file_errors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698