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

Unified Diff: src/log.h

Issue 2138643003: Revert three commits due to cpu-profiler failures (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « src/api.cc ('k') | src/log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log.h
diff --git a/src/log.h b/src/log.h
index 539a731dd72528bec80f83998c187659b4447c10..8b8ae55962436cfd613e8ec37650f7262461adb7 100644
--- a/src/log.h
+++ b/src/log.h
@@ -17,7 +17,9 @@
namespace v8 {
-struct TickSample;
+namespace base {
+class Semaphore;
+}
namespace sampler {
class Sampler;
@@ -63,15 +65,11 @@ namespace internal {
class CodeEventListener;
class CpuProfiler;
class Isolate;
-class JitLogger;
class Log;
-class LowLevelLogger;
-class PerfBasicLogger;
-class PerfJitLogger;
class Profiler;
-class ProfilerListener;
-class RuntimeCallTimer;
class Ticker;
+class RuntimeCallTimer;
+struct TickSample;
#undef LOG
#define LOG(isolate, Call) \
@@ -86,6 +84,12 @@ class Ticker;
if (logger->is_logging_code_events()) logger->Call; \
} while (false)
+class JitLogger;
+class PerfBasicLogger;
+class LowLevelLogger;
+class PerfJitLogger;
+class ProfilerListener;
+
class Logger : public CodeEventListener {
public:
enum StartEnd { START = 0, END = 1 };
« no previous file with comments | « src/api.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698