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

Side by Side Diff: runtime/vm/symbols.h

Issue 12313088: First step towards implementing dart:typeddata library. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 V(_New, "_new") \ 195 V(_New, "_new") \
196 V(DartScheme, "dart:") \ 196 V(DartScheme, "dart:") \
197 V(DartSchemePrivate, "dart:_") \ 197 V(DartSchemePrivate, "dart:_") \
198 V(DartCore, "dart:core") \ 198 V(DartCore, "dart:core") \
199 V(DartCollection, "dart:collection") \ 199 V(DartCollection, "dart:collection") \
200 V(DartCollectionDev, "dart:_collection-dev") \ 200 V(DartCollectionDev, "dart:_collection-dev") \
201 V(DartMath, "dart:math") \ 201 V(DartMath, "dart:math") \
202 V(DartIsolate, "dart:isolate") \ 202 V(DartIsolate, "dart:isolate") \
203 V(DartMirrors, "dart:mirrors") \ 203 V(DartMirrors, "dart:mirrors") \
204 V(DartScalarlist, "dart:scalarlist") \ 204 V(DartScalarlist, "dart:scalarlist") \
205 V(DartTypedData, "dart:typeddata") \
205 V(DartNativeWrappers, "dart:nativewrappers") \ 206 V(DartNativeWrappers, "dart:nativewrappers") \
206 V(DartAsync, "dart:async") \ 207 V(DartAsync, "dart:async") \
207 V(DartUri, "dart:uri") \ 208 V(DartUri, "dart:uri") \
208 V(DartUtf, "dart:utf") \ 209 V(DartUtf, "dart:utf") \
209 V(DartCrypto, "dart:crypto") \ 210 V(DartCrypto, "dart:crypto") \
210 V(DartJson, "dart:json") \ 211 V(DartJson, "dart:json") \
211 212
212 213
213 // Contains a list of frequently used strings in a canonicalized form. This 214 // Contains a list of frequently used strings in a canonicalized form. This
214 // list is kept in the vm_isolate in order to share the copy across isolates 215 // list is kept in the vm_isolate in order to share the copy across isolates
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 friend class SnapshotReader; 398 friend class SnapshotReader;
398 friend class SnapshotWriter; 399 friend class SnapshotWriter;
399 friend class ApiMessageReader; 400 friend class ApiMessageReader;
400 401
401 DISALLOW_COPY_AND_ASSIGN(Symbols); 402 DISALLOW_COPY_AND_ASSIGN(Symbols);
402 }; 403 };
403 404
404 } // namespace dart 405 } // namespace dart
405 406
406 #endif // VM_SYMBOLS_H_ 407 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698