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

Unified Diff: runtime/vm/profiler_service.cc

Issue 1723733002: Simplify various name flavors in VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
Index: runtime/vm/profiler_service.cc
diff --git a/runtime/vm/profiler_service.cc b/runtime/vm/profiler_service.cc
index 8152884af71fa9c94c5dac6d55f7bedd374717ac..92ee64706da144cfacf1d6d3607150d658642283 100644
--- a/runtime/vm/profiler_service.cc
+++ b/runtime/vm/profiler_service.cc
@@ -555,12 +555,12 @@ ProfileFunction* ProfileCode::SetFunctionAndName(ProfileFunctionTable* table) {
ASSERT(!code_.IsNull());
const Object& obj = Object::Handle(code_.owner());
if (obj.IsFunction()) {
- const String& user_name = String::Handle(code_.PrettyName());
+ const String& user_name = String::Handle(code_.UserVisibleName());
function = table->LookupOrAdd(Function::Cast(obj));
SetName(user_name.ToCString());
} else {
// A stub.
- const String& user_name = String::Handle(code_.PrettyName());
+ const String& user_name = String::Handle(code_.UserVisibleName());
function = table->AddStub(start(), user_name.ToCString());
SetName(user_name.ToCString());
}

Powered by Google App Engine
This is Rietveld 408576698