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

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

Issue 88783002: Isolate.spawn{Uri} only reports errors asynchronously. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix dart2js. Created 7 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
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 static void WriteMagicNumber(File* file); 196 static void WriteMagicNumber(File* file);
197 197
198 // Global state that stores the original working directory.. 198 // Global state that stores the original working directory..
199 static const char* original_working_directory; 199 static const char* original_working_directory;
200 200
201 static const char* kDartScheme; 201 static const char* kDartScheme;
202 static const char* kDartExtensionScheme; 202 static const char* kDartExtensionScheme;
203 static const char* kAsyncLibURL; 203 static const char* kAsyncLibURL;
204 static const char* kBuiltinLibURL; 204 static const char* kBuiltinLibURL;
205 static const char* kCoreLibURL; 205 static const char* kCoreLibURL;
206 static const char* kInternalLibURL;
207 static const char* kIsolateLibURL;
206 static const char* kIOLibURL; 208 static const char* kIOLibURL;
207 static const char* kIOLibPatchURL; 209 static const char* kIOLibPatchURL;
208 static const char* kUriLibURL; 210 static const char* kUriLibURL;
209 static const char* kHttpScheme; 211 static const char* kHttpScheme;
210 212
211 static const char* kIdFieldName; 213 static const char* kIdFieldName;
212 214
213 static uint8_t magic_number[]; 215 static uint8_t magic_number[];
214 216
215 private: 217 private:
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 } 535 }
534 536
535 private: 537 private:
536 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); 538 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array);
537 }; 539 };
538 540
539 } // namespace bin 541 } // namespace bin
540 } // namespace dart 542 } // namespace dart
541 543
542 #endif // BIN_DARTUTILS_H_ 544 #endif // BIN_DARTUTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698