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

Side by Side Diff: runtime/lib/developer.dart

Issue 2542003002: Add getIsolateID to Service class in dart:developer (Closed)
Patch Set: Created 4 years 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 import 'dart:isolate'; 5 import 'dart:isolate';
6 import 'dart:_internal'; 6 import 'dart:_internal';
7 7
8 @patch bool debugger({bool when: true, 8 @patch bool debugger({bool when: true,
9 String message}) native "Developer_debugger"; 9 String message}) native "Developer_debugger";
10 10
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 replyPort.send(sb.toString()); 150 replyPort.send(sb.toString());
151 } 151 }
152 152
153 @patch int _getServiceMajorVersion() native "Developer_getServiceMajorVersion"; 153 @patch int _getServiceMajorVersion() native "Developer_getServiceMajorVersion";
154 154
155 @patch int _getServiceMinorVersion() native "Developer_getServiceMinorVersion"; 155 @patch int _getServiceMinorVersion() native "Developer_getServiceMinorVersion";
156 156
157 @patch void _getServerInfo(SendPort sp) native "Developer_getServerInfo"; 157 @patch void _getServerInfo(SendPort sp) native "Developer_getServerInfo";
158 158
159 @patch void _webServerControl(SendPort sp, bool enable) 159 @patch void _webServerControl(SendPort sp, bool enable)
160 native "Developer_webServerControl"; 160 native "Developer_webServerControl";
161
162 @patch String _getIsolateIdFromSendPort(SendPort sp)
163 native "Developer_getIsolateIdFromSendPort";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698