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

Unified Diff: runtime/vm/isolate.h

Issue 3004563003: Refactor Isolate name format, storage and log (Closed)
Patch Set: Make Dart_DebugName unique again Created 3 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/heap.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index f98f7a1d5e1cb1a213906e0d6512931518e7a025..3a591ac95f86f92dace9f4cded3a5715bed98869 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -217,11 +217,7 @@ class Isolate : public BaseIsolate {
bool IsMutatorThreadScheduled() { return scheduled_mutator_thread_ != NULL; }
const char* name() const { return name_; }
-
-#if !defined(PRODUCT)
- const char* debugger_name() const { return debugger_name_; }
- void set_debugger_name(const char* name);
-#endif // !defined(PRODUCT)
+ void set_name(const char* name);
int64_t UptimeMicros() const;
@@ -853,7 +849,6 @@ class Isolate : public BaseIsolate {
// Fields that aren't needed in a product build go here with boolean flags at
// the top.
#if !defined(PRODUCT)
- char* debugger_name_;
Debugger* debugger_;
int64_t last_resume_timestamp_;
« no previous file with comments | « runtime/vm/heap.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698