diff options
author | Steve Block <steveblock@google.com> | 2010-05-12 07:19:48 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-05-12 07:19:48 -0700 |
commit | ba29528e8157ac38cfeedafd5e0b64bb063275a5 (patch) | |
tree | 889a8bcade1411b2b469a4730b645ad103657d11 /WebCore/platform/posix/FileSystemPOSIX.cpp | |
parent | 619df39d24772ddf66eeb812e6bc654c3ec85ca3 (diff) | |
parent | 2ff981b136267de4c36122d20219b175c7a415b5 (diff) | |
download | external_webkit-ba29528e8157ac38cfeedafd5e0b64bb063275a5.zip external_webkit-ba29528e8157ac38cfeedafd5e0b64bb063275a5.tar.gz external_webkit-ba29528e8157ac38cfeedafd5e0b64bb063275a5.tar.bz2 |
Merge "Cherry-pick WebKit change 59226 to use standard POSIX version of writeToFile()"
Diffstat (limited to 'WebCore/platform/posix/FileSystemPOSIX.cpp')
-rw-r--r-- | WebCore/platform/posix/FileSystemPOSIX.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/WebCore/platform/posix/FileSystemPOSIX.cpp b/WebCore/platform/posix/FileSystemPOSIX.cpp index ba17d39..ac8c7fa 100644 --- a/WebCore/platform/posix/FileSystemPOSIX.cpp +++ b/WebCore/platform/posix/FileSystemPOSIX.cpp @@ -116,7 +116,6 @@ bool truncateFile(PlatformFileHandle handle, long long offset) return !ftruncate(handle, offset); } -#if !PLATFORM(ANDROID) int writeToFile(PlatformFileHandle handle, const char* data, int length) { do { @@ -126,7 +125,6 @@ int writeToFile(PlatformFileHandle handle, const char* data, int length) } while (errno == EINTR); return -1; } -#endif int readFromFile(PlatformFileHandle handle, char* data, int length) { |