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

Unified Diff: runtime/vm/object.h

Issue 51653006: Track live instance and allocation counts for classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index a41379387f8a9c0e7bf9e17e9fb88b2125b5d349..a6255eb9ae45d274ded161e18a43aa070b01c893 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -1097,6 +1097,8 @@ class Class : public Object {
class MixinTypeAppliedBit : public BitField<bool, kMixinTypeAppliedBit, 1> {};
void set_name(const String& value) const;
+ void set_user_name(const String& value) const;
+ RawString* GenerateUserVisibleName() const;
void set_signature_function(const Function& value) const;
void set_signature_type(const AbstractType& value) const;
void set_state_bits(intptr_t bits) const;

Powered by Google App Engine
This is Rietveld 408576698