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

Unified Diff: runtime/vm/isolate.h

Issue 1314673008: Migrate logging infrastructure Isolate->Thread (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix test. Created 5 years, 3 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/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index b8e7a4ca40fa254765ca3b75f3fc121eb9d50362..ef0f798fd4e3702b4af562c563c837736e996b3e 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -170,9 +170,6 @@ class Isolate : public BaseIsolate {
const char* debugger_name() const { return debugger_name_; }
void set_debugger_name(const char* name);
- // TODO(koda): Move to Thread.
- class Log* Log() const;
-
int64_t start_time() const { return start_time_; }
Dart_Port main_port() const { return main_port_; }
@@ -759,6 +756,8 @@ class Isolate : public BaseIsolate {
mutator_thread_->set_zone(zone);
}
+ bool is_service_isolate() const { return is_service_isolate_; }
+
private:
friend class Dart; // Init, InitOnce, Shutdown.
@@ -858,9 +857,7 @@ class Isolate : public BaseIsolate {
CompilerStats* compiler_stats_;
- // Log.
bool is_service_isolate_;
- class Log* log_;
// Status support.
char* stacktrace_;
« no previous file with comments | « runtime/vm/intrinsifier.cc ('k') | runtime/vm/isolate.cc » ('j') | runtime/vm/thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698