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

Unified Diff: runtime/vm/base_isolate.h

Issue 798873007: Temporarily move vm_tag_ from BaseIsolate to Isolate. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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
===================================================================
--- runtime/vm/base_isolate.h (revision 42877)
+++ runtime/vm/base_isolate.h (working copy)
@@ -98,14 +98,6 @@
static void AssertCurrent(BaseIsolate* isolate);
#endif
- uword vm_tag() const {
- return vm_tag_;
- }
-
- void set_vm_tag(uword tag) {
- vm_tag_ = tag;
- }
-
protected:
BaseIsolate()
: top_resource_(NULL),
@@ -115,8 +107,7 @@
no_handle_scope_depth_(0),
no_gc_scope_depth_(0),
#endif
- no_callback_scope_depth_(0),
- vm_tag_(0)
+ no_callback_scope_depth_(0)
{}
~BaseIsolate() {
@@ -131,7 +122,6 @@
int32_t no_gc_scope_depth_;
#endif
int32_t no_callback_scope_depth_;
- uword vm_tag_;
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