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

Side by Side Diff: base/platform_file_win.cc

Issue 541022: Fix the case where the browser livelocks if we cannot open a file. (Closed)
Patch Set: Uploading checkpoint. This is known to cause all uploads on Windows to be zero bytes long. Created 10 years, 9 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 unified diff | Download patch
« no previous file with comments | « base/platform_file_posix.cc ('k') | net/base/file_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/platform_file.h" 5 #include "base/platform_file.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 9
10 namespace base { 10 namespace base {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 PlatformFile CreatePlatformFile(const std::wstring& name, int flags, 69 PlatformFile CreatePlatformFile(const std::wstring& name, int flags,
70 bool* created) { 70 bool* created) {
71 return CreatePlatformFile(FilePath::FromWStringHack(name), flags, created); 71 return CreatePlatformFile(FilePath::FromWStringHack(name), flags, created);
72 } 72 }
73 73
74 bool ClosePlatformFile(PlatformFile file) { 74 bool ClosePlatformFile(PlatformFile file) {
75 return (CloseHandle(file) == 0); 75 return (CloseHandle(file) == 0);
76 } 76 }
77 77
78 bool GetPlatformFileSize(PlatformFile file, uint64* out_size) {
79 LARGE_INTEGER size;
80 if (!GetFileSizeEx(file, &size))
81 return false;
82 *out_size = size.QuadPart;
83 return true;
84 }
85
78 } // namespace disk_cache 86 } // namespace disk_cache
OLDNEW
« no previous file with comments | « base/platform_file_posix.cc ('k') | net/base/file_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698