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

Unified Diff: runtime/vm/isolate.h

Issue 206213004: Add a VM page to the observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/bin/vmservice/client/lib/src/service/service.dart ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index c4277282e6bb293e399d1c9334b4ea2d90c170db..39b4ce2bf74672d1651c8e2f2d53355f3400cc9c 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -143,7 +143,7 @@ class Isolate : public BaseIsolate {
int64_t start_time() const { return start_time_; }
- Dart_Port main_port() { return main_port_; }
+ Dart_Port main_port() const { return main_port_; }
void set_main_port(Dart_Port port) {
ASSERT(main_port_ == 0); // Only set main port once.
main_port_ = port;
@@ -433,7 +433,7 @@ class Isolate : public BaseIsolate {
return profiler_data_;
}
- void PrintToJSONStream(JSONStream* stream);
+ void PrintToJSONStream(JSONStream* stream, bool ref = true);
void set_thread_state(InterruptableThreadState* state) {
ASSERT((thread_state_ == NULL) || (state == NULL));
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/service/service.dart ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698