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

Side by Side Diff: base/platform_file_posix.cc

Issue 243102: Convert base dependencies to use sys_string_conversions instead of the ICU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « base/logging.cc ('k') | base/process_util_mac.mm » ('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) 2009 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 <fcntl.h> 7 #include <fcntl.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <sys/stat.h> 9 #include <sys/stat.h>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/string_util.h" 12 #include "base/utf_string_conversions.h"
13 13
14 namespace base { 14 namespace base {
15 15
16 // TODO(erikkay): does it make sense to support PLATFORM_FILE_EXCLUSIVE_* here? 16 // TODO(erikkay): does it make sense to support PLATFORM_FILE_EXCLUSIVE_* here?
17 PlatformFile CreatePlatformFile(const std::wstring& name, 17 PlatformFile CreatePlatformFile(const std::wstring& name,
18 int flags, 18 int flags,
19 bool* created) { 19 bool* created) {
20 int open_flags = 0; 20 int open_flags = 0;
21 if (flags & PLATFORM_FILE_CREATE) 21 if (flags & PLATFORM_FILE_CREATE)
22 open_flags = O_CREAT | O_EXCL; 22 open_flags = O_CREAT | O_EXCL;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 68 }
69 69
70 return descriptor; 70 return descriptor;
71 } 71 }
72 72
73 bool ClosePlatformFile(PlatformFile file) { 73 bool ClosePlatformFile(PlatformFile file) {
74 return close(file); 74 return close(file);
75 } 75 }
76 76
77 } // namespace base 77 } // namespace base
OLDNEW
« no previous file with comments | « base/logging.cc ('k') | base/process_util_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698