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

Side by Side Diff: runtime/include/dart_api.h

Issue 9348019: Add support for byte arrays to native messages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | runtime/vm/dart_api_message.cc » ('J')
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 INCLUDE_DART_API_H_ 5 #ifndef INCLUDE_DART_API_H_
6 #define INCLUDE_DART_API_H_ 6 #define INCLUDE_DART_API_H_
7 7
8 /** \mainpage Dart Embedding API Reference 8 /** \mainpage Dart Embedding API Reference
9 * 9 *
10 * Dart is a class-based programming language for creating structured 10 * Dart is a class-based programming language for creating structured
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 * representation as a Dart_CObject. 544 * representation as a Dart_CObject.
545 */ 545 */
546 struct Dart_CObject { 546 struct Dart_CObject {
547 enum Type { 547 enum Type {
548 kNull = 0, 548 kNull = 0,
549 kBool, 549 kBool,
550 kInt32, 550 kInt32,
551 kDouble, 551 kDouble,
552 kString, 552 kString,
553 kArray, 553 kArray,
554 kByteArray,
554 kNumberOfTypes 555 kNumberOfTypes
555 }; 556 };
556 Type type; 557 Type type;
557 union { 558 union {
558 bool as_bool; 559 bool as_bool;
559 int32_t as_int32; 560 int32_t as_int32;
560 double as_double; 561 double as_double;
561 char* as_string; 562 char* as_string;
562 struct { 563 struct {
563 int length; 564 int length;
564 Dart_CObject** values; 565 Dart_CObject** values;
565 } as_array; 566 } as_array;
567 struct {
568 int length;
569 uint8_t* values;
570 } as_byte_array;
566 } value; 571 } value;
567 }; 572 };
568 573
569 /** 574 /**
570 * Posts a message on some port. The message will contain the 575 * Posts a message on some port. The message will contain the
571 * Dart_CObject object graph rooted in 'message'. 576 * Dart_CObject object graph rooted in 'message'.
572 * 577 *
573 * While the message is being sent the state of the graph of 578 * While the message is being sent the state of the graph of
574 * Dart_CObject structures rooted in 'message' should not be accessed, 579 * Dart_CObject structures rooted in 'message' should not be accessed,
575 * as the message generation will make temporary modifications to the 580 * as the message generation will make temporary modifications to the
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 1466
1462 // --- Profiling support ---- 1467 // --- Profiling support ----
1463 1468
1464 // External pprof support for gathering and dumping symbolic 1469 // External pprof support for gathering and dumping symbolic
1465 // information that can be used for better profile reports for 1470 // information that can be used for better profile reports for
1466 // dynamically generated code. 1471 // dynamically generated code.
1467 DART_EXPORT void Dart_InitPprofSupport(); 1472 DART_EXPORT void Dart_InitPprofSupport();
1468 DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size); 1473 DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size);
1469 1474
1470 #endif // INCLUDE_DART_API_H_ 1475 #endif // INCLUDE_DART_API_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | runtime/vm/dart_api_message.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698