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

Side by Side Diff: runtime/bin/utils_macos.cc

Issue 11565008: Use unicode versions of process APIs on Windows. Additionally, (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « runtime/bin/utils_linux.cc ('k') | runtime/bin/utils_win.cc » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include <errno.h> 5 #include <errno.h>
6 #include <netdb.h> 6 #include <netdb.h>
7 7
8 #include "bin/utils.h" 8 #include "bin/utils.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 char* StringUtils::WideToUtf8(wchar_t* str) { 56 char* StringUtils::WideToUtf8(wchar_t* str) {
57 UNIMPLEMENTED(); 57 UNIMPLEMENTED();
58 return NULL; 58 return NULL;
59 } 59 }
60 60
61 const char* StringUtils::WideToUtf8(const wchar_t* str) { 61 const char* StringUtils::WideToUtf8(const wchar_t* str) {
62 UNIMPLEMENTED(); 62 UNIMPLEMENTED();
63 return NULL; 63 return NULL;
64 } 64 }
65
66 wchar_t** ShellUtils::GetUnicodeArgv(int* argc) {
67 return NULL;
68 }
69
70 void ShellUtils::FreeUnicodeArgv(wchar_t** argv) {
71 }
OLDNEW
« no previous file with comments | « runtime/bin/utils_linux.cc ('k') | runtime/bin/utils_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698