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

Unified Diff: runtime/vm/profiler.cc

Issue 487023003: vmservice protocol cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 4 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/vm/pages.cc ('k') | runtime/vm/report_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/profiler.cc
diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
index 6b118a0c8d2db942446bce9bd0a0e8974dd2ba23..690a23b53ebd9dd89659729d2d3988531c7e30bf 100644
--- a/runtime/vm/profiler.cc
+++ b/runtime/vm/profiler.cc
@@ -467,7 +467,6 @@ class CodeRegion : public ZoneAllocated {
obj.AddProperty("type", "@Code");
obj.AddProperty("kind", "Native");
obj.AddProperty("name", name());
- obj.AddProperty("user_name", name());
obj.AddPropertyF("start", "%" Px "", start());
obj.AddPropertyF("end", "%" Px "", end());
obj.AddPropertyF("id", "code/native-%" Px "", start());
@@ -477,7 +476,6 @@ class CodeRegion : public ZoneAllocated {
func.AddProperty("type", "@Function");
func.AddPropertyF("id", "functions/native-%" Px "", start());
func.AddProperty("name", name());
- func.AddProperty("user_name", name());
func.AddProperty("kind", "Native");
}
}
@@ -488,7 +486,6 @@ class CodeRegion : public ZoneAllocated {
obj.AddProperty("type", "@Code");
obj.AddProperty("kind", "Collected");
obj.AddProperty("name", name());
- obj.AddProperty("user_name", name());
obj.AddPropertyF("start", "%" Px "", start());
obj.AddPropertyF("end", "%" Px "", end());
obj.AddPropertyF("id", "code/collected-%" Px "", start());
@@ -498,7 +495,6 @@ class CodeRegion : public ZoneAllocated {
func.AddProperty("type", "@Function");
obj.AddPropertyF("id", "functions/collected-%" Px "", start());
func.AddProperty("name", name());
- func.AddProperty("user_name", name());
func.AddProperty("kind", "Collected");
}
}
@@ -509,7 +505,6 @@ class CodeRegion : public ZoneAllocated {
obj.AddProperty("type", "@Code");
obj.AddProperty("kind", "Reused");
obj.AddProperty("name", name());
- obj.AddProperty("user_name", name());
obj.AddPropertyF("start", "%" Px "", start());
obj.AddPropertyF("end", "%" Px "", end());
obj.AddPropertyF("id", "code/reused-%" Px "", start());
@@ -519,7 +514,6 @@ class CodeRegion : public ZoneAllocated {
func.AddProperty("type", "@Function");
obj.AddPropertyF("id", "functions/reused-%" Px "", start());
func.AddProperty("name", name());
- func.AddProperty("user_name", name());
func.AddProperty("kind", "Reused");
}
}
@@ -531,7 +525,6 @@ class CodeRegion : public ZoneAllocated {
obj.AddProperty("kind", "Tag");
obj.AddPropertyF("id", "code/tag-%" Px "", start());
obj.AddProperty("name", name());
- obj.AddProperty("user_name", name());
obj.AddPropertyF("start", "%" Px "", start());
obj.AddPropertyF("end", "%" Px "", end());
{
@@ -541,7 +534,6 @@ class CodeRegion : public ZoneAllocated {
func.AddProperty("kind", "Tag");
obj.AddPropertyF("id", "functions/tag-%" Px "", start());
func.AddProperty("name", name());
- func.AddProperty("user_name", name());
}
}
« no previous file with comments | « runtime/vm/pages.cc ('k') | runtime/vm/report_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698