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

Unified Diff: runtime/vm/isolate.h

Issue 3004563003: Refactor Isolate name format, storage and log (Closed)
Patch Set: 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
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index dcf537113caabbac316ff81a98fa7d7e9c48c3cc..822f78f82fc83b75a1fcd42082db5287594f1d15 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;
@@ -847,7 +843,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_;

Powered by Google App Engine
This is Rietveld 408576698