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

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

Issue 1753903003: Make getSourceReport public. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « runtime/observatory/tests/service/get_source_report_test.dart ('k') | no next file » | 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 #include "vm/service.h" 5 #include "vm/service.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 #include "include/dart_native_api.h" 8 #include "include/dart_native_api.h"
9 #include "platform/globals.h" 9 #include "platform/globals.h"
10 10
(...skipping 4023 matching lines...) Expand 10 before | Expand all | Expand 10 after
4034 { "_getPersistentHandles", GetPersistentHandles, 4034 { "_getPersistentHandles", GetPersistentHandles,
4035 get_persistent_handles_params, }, 4035 get_persistent_handles_params, },
4036 { "_getPorts", GetPorts, 4036 { "_getPorts", GetPorts,
4037 get_ports_params }, 4037 get_ports_params },
4038 { "_getReachableSize", GetReachableSize, 4038 { "_getReachableSize", GetReachableSize,
4039 get_reachable_size_params }, 4039 get_reachable_size_params },
4040 { "_getRetainedSize", GetRetainedSize, 4040 { "_getRetainedSize", GetRetainedSize,
4041 get_retained_size_params }, 4041 get_retained_size_params },
4042 { "_getRetainingPath", GetRetainingPath, 4042 { "_getRetainingPath", GetRetainingPath,
4043 get_retaining_path_params }, 4043 get_retaining_path_params },
4044 { "_getSourceReport", GetSourceReport, 4044 { "getSourceReport", GetSourceReport,
4045 get_source_report_params }, 4045 get_source_report_params },
4046 { "getStack", GetStack, 4046 { "getStack", GetStack,
4047 get_stack_params }, 4047 get_stack_params },
4048 { "_getTagProfile", GetTagProfile, 4048 { "_getTagProfile", GetTagProfile,
4049 get_tag_profile_params }, 4049 get_tag_profile_params },
4050 { "_getTypeArgumentsList", GetTypeArgumentsList, 4050 { "_getTypeArgumentsList", GetTypeArgumentsList,
4051 get_type_arguments_list_params }, 4051 get_type_arguments_list_params },
4052 { "getVersion", GetVersion, 4052 { "getVersion", GetVersion,
4053 get_version_params }, 4053 get_version_params },
4054 { "getVM", GetVM, 4054 { "getVM", GetVM,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
4096 if (strcmp(method_name, method.name) == 0) { 4096 if (strcmp(method_name, method.name) == 0) {
4097 return &method; 4097 return &method;
4098 } 4098 }
4099 } 4099 }
4100 return NULL; 4100 return NULL;
4101 } 4101 }
4102 4102
4103 #endif // !PRODUCT 4103 #endif // !PRODUCT
4104 4104
4105 } // namespace dart 4105 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/get_source_report_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698