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

Side by Side Diff: runtime/bin/dartutils.h

Issue 23875023: Fix http://dartbug.com/13297 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 | « no previous file | runtime/bin/dartutils.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 #ifndef BIN_DARTUTILS_H_ 5 #ifndef BIN_DARTUTILS_H_
6 #define BIN_DARTUTILS_H_ 6 #define BIN_DARTUTILS_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "include/dart_native_api.h" 9 #include "include/dart_native_api.h"
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // Create a new Dart String object from a C String. 156 // Create a new Dart String object from a C String.
157 static Dart_Handle NewString(const char* str) { 157 static Dart_Handle NewString(const char* str) {
158 ASSERT(str != NULL); 158 ASSERT(str != NULL);
159 return Dart_NewStringFromUTF8(reinterpret_cast<const uint8_t*>(str), 159 return Dart_NewStringFromUTF8(reinterpret_cast<const uint8_t*>(str),
160 strlen(str)); 160 strlen(str));
161 } 161 }
162 162
163 // Create a new Dart InternalError object with the provided message. 163 // Create a new Dart InternalError object with the provided message.
164 static Dart_Handle NewInternalError(const char* message); 164 static Dart_Handle NewInternalError(const char* message);
165 165
166 static void SetOriginalWorkingDirectory(); 166 static bool SetOriginalWorkingDirectory();
167 167
168 static const char* MapLibraryUrl(CommandLineOptions* url_mapping, 168 static const char* MapLibraryUrl(CommandLineOptions* url_mapping,
169 const char* url_string); 169 const char* url_string);
170 170
171 static Dart_Handle SetWorkingDirectory(Dart_Handle builtin_lib); 171 static Dart_Handle SetWorkingDirectory(Dart_Handle builtin_lib);
172 172
173 static Dart_Handle ResolveScriptUri(Dart_Handle script_uri, 173 static Dart_Handle ResolveScriptUri(Dart_Handle script_uri,
174 Dart_Handle builtin_lib); 174 Dart_Handle builtin_lib);
175 175
176 static Dart_Handle FilePathFromUri(Dart_Handle script_uri, 176 static Dart_Handle FilePathFromUri(Dart_Handle script_uri,
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 } 518 }
519 519
520 private: 520 private:
521 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); 521 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array);
522 }; 522 };
523 523
524 } // namespace bin 524 } // namespace bin
525 } // namespace dart 525 } // namespace dart
526 526
527 #endif // BIN_DARTUTILS_H_ 527 #endif // BIN_DARTUTILS_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dartutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698