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

Unified Diff: runtime/vm/json_stream.h

Issue 170943003: Allow for embedder provided service request handlers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: runtime/vm/json_stream.h
diff --git a/runtime/vm/json_stream.h b/runtime/vm/json_stream.h
index 548e5538ad05c42187a14399dc9732dcea2bc27e..ba09e5d079a0736d6dbe0c7bd6cb4e10bb54913d 100644
--- a/runtime/vm/json_stream.h
+++ b/runtime/vm/json_stream.h
@@ -56,6 +56,11 @@ class JSONStream : ValueObject {
const char* LookupOption(const char* key) const;
+ const char* command() const { return command_; }
+ const char** arguments() const { return arguments_; }
+ const char** option_keys() const { return option_keys_; }
+ const char** option_values() const { return option_values_; }
+
private:
void Clear();

Powered by Google App Engine
This is Rietveld 408576698