diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-19 16:17:03 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-19 16:17:03 +0000 |
commit | b15fe20691381d4c5c523f9a214d640e1462f59e (patch) | |
tree | 93c457edbd7408d128800eb3a26027a54d0b0883 /net/base/file_stream.h | |
parent | 22b9e14d471b04e4a6b238bcd1027c59ff33dc95 (diff) | |
download | chromium_src-b15fe20691381d4c5c523f9a214d640e1462f59e.zip chromium_src-b15fe20691381d4c5c523f9a214d640e1462f59e.tar.gz chromium_src-b15fe20691381d4c5c523f9a214d640e1462f59e.tar.bz2 |
Revert r39446: "Fix the case where the browser livelocks if we cannot open a file."
This somehow broke net_unittests on the Mac.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/file_stream.h')
-rw-r--r-- | net/base/file_stream.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/net/base/file_stream.h b/net/base/file_stream.h index 9fedea2..6b7f3dc 100644 --- a/net/base/file_stream.h +++ b/net/base/file_stream.h @@ -43,22 +43,12 @@ class FileStream { // Note that if there are any pending async operations, they'll be aborted. void Close(); - // Release performs the same actions as Close, but doesn't actually close the - // underlying PlatformFile. - void Release(); - // Call this method to open the FileStream. The remaining methods // cannot be used unless this method returns OK. If the file cannot be // opened then an error code is returned. // open_flags is a bitfield of base::PlatformFileFlags int Open(const FilePath& path, int open_flags); - // Calling this method is functionally the same as constructing the object - // with the non-default constructor. This method can only be used if the - // FileSteam isn't currently open (i.e. was constructed with the default - // constructor). - int Open(base::PlatformFile file, int open_flags); - // Returns true if Open succeeded and Close has not been called. bool IsOpen() const; |