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

Unified Diff: third_party/zlib/google/zip_reader.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « skia/ext/image_operations_unittest.cc ('k') | third_party/zlib/google/zip_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/zlib/google/zip_reader.cc
diff --git a/third_party/zlib/google/zip_reader.cc b/third_party/zlib/google/zip_reader.cc
index 5bcc264702f5a959f5dd4ff178ba21cc973d545a..915dbbc79d149488c7f8946b490b4e1c77c9dc00 100644
--- a/third_party/zlib/google/zip_reader.cc
+++ b/third_party/zlib/google/zip_reader.cc
@@ -333,7 +333,7 @@ bool ZipReader::ExtractCurrentEntryToFd(const int fd) {
} else if (num_bytes_read > 0) {
// Some data is read. Write it to the output file descriptor.
if (num_bytes_read !=
- file_util::WriteFileDescriptor(fd, buf, num_bytes_read)) {
+ base::WriteFileDescriptor(fd, buf, num_bytes_read)) {
success = false;
break;
}
« no previous file with comments | « skia/ext/image_operations_unittest.cc ('k') | third_party/zlib/google/zip_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698