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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 9332007: Spelling corrections to the API header file (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/include/dart_api.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl.cc
diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
index 08d010401976161223ec1bc91c8c59e88473e797..b282bf2fd913c338eba9f83747b290160c139391 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -690,11 +690,11 @@ DART_EXPORT bool Dart_PostIntArray(Dart_Port port_id,
}
-DART_EXPORT bool Dart_PostCObject(Dart_Port port_id, Dart_CObject* root) {
+DART_EXPORT bool Dart_PostCObject(Dart_Port port_id, Dart_CObject* message) {
uint8_t* buffer = NULL;
MessageWriter writer(&buffer, allocator);
- writer.WriteCMessage(root);
+ writer.WriteCMessage(message);
// Post the message at the given port.
return PortMap::PostMessage(new Message(
« no previous file with comments | « runtime/include/dart_api.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698