diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-24 18:37:58 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-24 18:37:58 +0000 |
commit | e23c6c9ea366823dca0f5ec9e3fc756d0180373a (patch) | |
tree | 4136441c5f11e2b95038c697252a69a763c5aeb7 /base | |
parent | 7e4576de1a1a54e2b1a6d7c1126b845c638cf1c2 (diff) | |
download | chromium_src-e23c6c9ea366823dca0f5ec9e3fc756d0180373a.zip chromium_src-e23c6c9ea366823dca0f5ec9e3fc756d0180373a.tar.gz chromium_src-e23c6c9ea366823dca0f5ec9e3fc756d0180373a.tar.bz2 |
Revert "Fix the case where the browser livelocks if we cannot open a file."
(Still breaks Mac net_unittests. Damm you Mac.)
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39901 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/platform_file.h | 6 | ||||
-rw-r--r-- | base/platform_file_posix.cc | 8 | ||||
-rw-r--r-- | base/platform_file_win.cc | 8 |
3 files changed, 0 insertions, 22 deletions
diff --git a/base/platform_file.h b/base/platform_file.h index 46ff0cc..0dbf4e4 100644 --- a/base/platform_file.h +++ b/base/platform_file.h @@ -6,8 +6,6 @@ #define BASE_PLATFORM_FILE_H_ #include "build/build_config.h" -#include "base/basictypes.h" - #if defined(OS_WIN) #include <windows.h> #endif @@ -55,10 +53,6 @@ PlatformFile CreatePlatformFile(const std::wstring& name, // Closes a file handle bool ClosePlatformFile(PlatformFile file); -// Get the length of an underlying file. Returns false on error. Otherwise -// *size is set to the length of the file, in bytes. -bool GetPlatformFileSize(PlatformFile file, uint64* size); - } // namespace base #endif // BASE_PLATFORM_FILE_H_ diff --git a/base/platform_file_posix.cc b/base/platform_file_posix.cc index bfd40e9..46039b9 100644 --- a/base/platform_file_posix.cc +++ b/base/platform_file_posix.cc @@ -77,12 +77,4 @@ bool ClosePlatformFile(PlatformFile file) { return close(file); } -bool GetPlatformFileSize(PlatformFile file, uint64* out_size) { - struct stat st; - if (fstat(file, &st)) - return false; - *out_size = st.st_size; - return true; -} - } // namespace base diff --git a/base/platform_file_win.cc b/base/platform_file_win.cc index ccaee1e..1143487 100644 --- a/base/platform_file_win.cc +++ b/base/platform_file_win.cc @@ -75,12 +75,4 @@ bool ClosePlatformFile(PlatformFile file) { return (CloseHandle(file) == 0); } -bool GetPlatformFileSize(PlatformFile file, uint64* out_size) { - LARGE_INTEGER size; - if (!GetFileSizeEx(file, &size)) - return false; - *out_size = size.QuadPart; - return true; -} - } // namespace disk_cache |