Index: src/log.h |
diff --git a/src/log.h b/src/log.h |
index 5fab4facd1a59718822fb5fcb9631c012d77afd8..eced6050a58da42f3e0d0d9cb2f1951244949111 100644 |
--- a/src/log.h |
+++ b/src/log.h |
@@ -74,7 +74,6 @@ namespace internal { |
class LogMessageBuilder; |
class Profiler; |
class Semaphore; |
-class SlidingStateWindow; |
class Ticker; |
class Isolate; |
@@ -175,9 +174,6 @@ class Logger { |
// leaving the file open. |
FILE* TearDown(); |
- // Enable the computation of a sliding window of states. |
- void EnableSlidingStateWindow(); |
- |
// Emits an event with a string value -> (name, value). |
void StringEvent(const char* name, const char* value); |
@@ -433,10 +429,6 @@ class Logger { |
// of samples. |
Profiler* profiler_; |
- // SlidingStateWindow instance keeping a sliding window of the most |
- // recent VM states. |
- SlidingStateWindow* sliding_state_window_; |
- |
// An array of log events names. |
const char* const* log_events_; |
@@ -447,7 +439,6 @@ class Logger { |
friend class LogMessageBuilder; |
friend class TimeLog; |
friend class Profiler; |
- friend class SlidingStateWindow; |
friend class StackTracer; |
friend class VMState; |