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

Unified Diff: runtime/include/dart_api.h

Issue 9303001: Add support for lists to the C message reader (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed unused function Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/platform/assert.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/include/dart_api.h
diff --git a/runtime/include/dart_api.h b/runtime/include/dart_api.h
index a31dd9a271d882a267f8c48d21728a1eda34293e..0ca7c064a5b3873258272262911f5442ef718945 100755
--- a/runtime/include/dart_api.h
+++ b/runtime/include/dart_api.h
@@ -1370,12 +1370,13 @@ DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size);
*/
struct Dart_CObject {
enum Type {
- kNull,
+ kNull = 0,
kBool,
kInt32,
kDouble,
kString,
- kArray
+ kArray,
+ kNumberOfTypes
};
Type type;
union {
« no previous file with comments | « no previous file | runtime/platform/assert.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698