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

Unified Diff: base/platform_file_posix.cc

Issue 12259025: Linux: apply a different hyphen patch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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
Index: base/platform_file_posix.cc
diff --git a/base/platform_file_posix.cc b/base/platform_file_posix.cc
index d89a1b068fcd6eaf42a471072ef0b1bb919df26a..f898ab544c26d0b49aa8ce77fd3cdf3d3b25f4f6 100644
--- a/base/platform_file_posix.cc
+++ b/base/platform_file_posix.cc
@@ -160,6 +160,10 @@ PlatformFile CreatePlatformFileUnsafe(const FilePath& name,
return descriptor;
}
+FILE* FdopenPlatformFile(PlatformFile file, const char* mode) {
+ return fdopen(file, mode);
+}
+
bool ClosePlatformFile(PlatformFile file) {
base::ThreadRestrictions::AssertIOAllowed();
return !HANDLE_EINTR(close(file));
« no previous file with comments | « base/platform_file.h ('k') | base/platform_file_win.cc » ('j') | third_party/hyphen/hyphen.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698