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

Unified Diff: runtime/vm/base_isolate.h

Issue 2999583002: Renames the isolate's mutator_thread_ to scheduled_mutator_thread_ (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
« no previous file with comments | « no previous file | runtime/vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/base_isolate.h
diff --git a/runtime/vm/base_isolate.h b/runtime/vm/base_isolate.h
index 544988095f8ed7d6e156d895334451624ae06601..58a0cbbb8e12a8b49211f98d5cc133fde2b9dd70 100644
--- a/runtime/vm/base_isolate.h
+++ b/runtime/vm/base_isolate.h
@@ -31,13 +31,13 @@ class BaseIsolate {
#endif
protected:
- BaseIsolate() : mutator_thread_(NULL) {}
+ BaseIsolate() : scheduled_mutator_thread_(NULL) {}
~BaseIsolate() {
// Do not delete stack resources: top_resource_ and current_zone_.
}
- Thread* mutator_thread_;
+ Thread* scheduled_mutator_thread_;
private:
DISALLOW_COPY_AND_ASSIGN(BaseIsolate);
« no previous file with comments | « no previous file | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698