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

Unified Diff: vm/object.h

Issue 11017069: - Remove deprecated Dart API calls Dart_ClosureSmrck and DartClosureSetSmrck (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 2 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 | « vm/dart_api_impl.cc ('k') | vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 13425)
+++ vm/object.h (working copy)
@@ -5469,13 +5469,6 @@
return OFFSET_OF(RawClosure, type_arguments_);
}
- // TODO(iposva): Remove smrck support once mapping to arbitrary is available.
- RawInteger* smrck() const { return raw_ptr()->smrck_; }
- void set_smrck(const Integer& smrck) const {
- StorePointer(&raw_ptr()->smrck_, smrck.raw());
- }
- static intptr_t smrck_offset() { return OFFSET_OF(RawClosure, smrck_); }
-
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawClosure));
}
« no previous file with comments | « vm/dart_api_impl.cc ('k') | vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698