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

Side by Side Diff: runtime/vm/service.h

Issue 2438613002: Provide an API to dart:developer to control the web server hosting the Service Protocol (Closed)
Patch Set: CHANGELOG.md merge and fatal error Created 4 years, 1 month 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
« no previous file with comments | « runtime/vm/bootstrap_natives.h ('k') | runtime/vm/service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 RUNTIME_VM_SERVICE_H_ 5 #ifndef RUNTIME_VM_SERVICE_H_
6 #define RUNTIME_VM_SERVICE_H_ 6 #define RUNTIME_VM_SERVICE_H_
7 7
8 #include "include/dart_tools_api.h" 8 #include "include/dart_tools_api.h"
9 9
10 #include "vm/allocation.h" 10 #include "vm/allocation.h"
11 #include "vm/object_id_ring.h" 11 #include "vm/object_id_ring.h"
12 #include "vm/os_thread.h" 12 #include "vm/os_thread.h"
13 13
14 namespace dart { 14 namespace dart {
15 15
16 #define SERVICE_PROTOCOL_MAJOR_VERSION 3
17 #define SERVICE_PROTOCOL_MINOR_VERSION 5
18
16 class Array; 19 class Array;
17 class EmbedderServiceHandler; 20 class EmbedderServiceHandler;
18 class Error; 21 class Error;
19 class GCEvent; 22 class GCEvent;
20 class GrowableObjectArray; 23 class GrowableObjectArray;
21 class Instance; 24 class Instance;
22 class Isolate; 25 class Isolate;
23 class JSONStream; 26 class JSONStream;
24 class Object; 27 class Object;
25 class RawInstance; 28 class RawInstance;
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 static bool needs_isolate_events_; 215 static bool needs_isolate_events_;
213 static bool needs_debug_events_; 216 static bool needs_debug_events_;
214 static bool needs_gc_events_; 217 static bool needs_gc_events_;
215 static bool needs_echo_events_; 218 static bool needs_echo_events_;
216 static bool needs_graph_events_; 219 static bool needs_graph_events_;
217 }; 220 };
218 221
219 } // namespace dart 222 } // namespace dart
220 223
221 #endif // RUNTIME_VM_SERVICE_H_ 224 #endif // RUNTIME_VM_SERVICE_H_
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap_natives.h ('k') | runtime/vm/service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698