| 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_;
|
|
|
|
|