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

Unified Diff: runtime/vm/isolate.h

Issue 2998473002: [vm] Revert changes related to triggering the 1st GC (Closed)
Patch Set: Address review comments 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.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 62572410ee3a6bd156e7fd0fd7705c346fbb7e55..6bbc04d0778a13c02acf3e4972f712a040bea699 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -227,9 +227,10 @@ class Isolate : public BaseIsolate {
#if !defined(PRODUCT)
const char* debugger_name() const { return debugger_name_; }
void set_debugger_name(const char* name);
- int64_t UptimeMicros() const;
#endif // !defined(PRODUCT)
+ int64_t UptimeMicros() const;
+
Dart_Port main_port() const { return main_port_; }
void set_main_port(Dart_Port port) {
ASSERT(main_port_ == 0); // Only set main port once.
@@ -790,7 +791,6 @@ class Isolate : public BaseIsolate {
bool should_pause_post_service_request_;
char* debugger_name_;
- int64_t start_time_micros_;
Debugger* debugger_;
int64_t last_resume_timestamp_;
@@ -845,6 +845,7 @@ class Isolate : public BaseIsolate {
#endif // !defined(PRODUCT)
// All other fields go here.
+ int64_t start_time_micros_;
ThreadRegistry* thread_registry_;
SafepointHandler* safepoint_handler_;
Dart_MessageNotifyCallback message_notify_callback_;
« no previous file with comments | « no previous file | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698