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

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

Issue 133893007: Rename internal library dart:_collection-dev to dart:_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo in dart2js Symbol lookup. Created 6 years, 11 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
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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 // Write a magic number to indicate a script snapshot file. 202 // Write a magic number to indicate a script snapshot file.
203 static void WriteMagicNumber(File* file); 203 static void WriteMagicNumber(File* file);
204 204
205 // Global state that stores the original working directory.. 205 // Global state that stores the original working directory..
206 static const char* original_working_directory; 206 static const char* original_working_directory;
207 207
208 static const char* kDartScheme; 208 static const char* kDartScheme;
209 static const char* kDartExtensionScheme; 209 static const char* kDartExtensionScheme;
210 static const char* kAsyncLibURL; 210 static const char* kAsyncLibURL;
211 static const char* kBuiltinLibURL; 211 static const char* kBuiltinLibURL;
212 static const char* kCollectionDevLibURL; 212 static const char* kInternalLibURL;
floitsch 2014/01/14 19:21:01 I believe the URLs were sorted in order.
Ivan Posva 2014/01/14 23:35:32 Yes, please.
Lasse Reichstein Nielsen 2014/01/15 09:27:42 Done.
213 static const char* kCoreLibURL; 213 static const char* kCoreLibURL;
214 static const char* kIsolateLibURL; 214 static const char* kIsolateLibURL;
215 static const char* kIOLibURL; 215 static const char* kIOLibURL;
216 static const char* kIOLibPatchURL; 216 static const char* kIOLibPatchURL;
217 static const char* kUriLibURL; 217 static const char* kUriLibURL;
218 static const char* kHttpScheme; 218 static const char* kHttpScheme;
219 219
220 static const char* kIdFieldName; 220 static const char* kIdFieldName;
221 221
222 static uint8_t magic_number[]; 222 static uint8_t magic_number[];
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 } 542 }
543 543
544 private: 544 private:
545 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); 545 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array);
546 }; 546 };
547 547
548 } // namespace bin 548 } // namespace bin
549 } // namespace dart 549 } // namespace dart
550 550
551 #endif // BIN_DARTUTILS_H_ 551 #endif // BIN_DARTUTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698