Index: src/log.h |
diff --git a/src/log.h b/src/log.h |
index e76136892e47235820f58c230ba76b3e588287f8..9953b4cd8735468e157c2b18b008a541afece107 100644 |
--- a/src/log.h |
+++ b/src/log.h |
@@ -57,7 +57,6 @@ namespace internal { |
// Forward declarations. |
class CodeEventListener; |
-class CompilationInfo; |
class CpuProfiler; |
class Isolate; |
class Log; |
@@ -226,8 +225,8 @@ class Logger { |
void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, |
SharedFunctionInfo* shared, Name* name); |
void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, |
- SharedFunctionInfo* shared, CompilationInfo* info, |
- Name* source, int line, int column); |
+ SharedFunctionInfo* shared, Name* source, int line, |
+ int column); |
void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, |
int args_count); |
// Emits a code deoptimization event. |
@@ -470,9 +469,8 @@ class CodeEventListener { |
virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code, |
SharedFunctionInfo* shared, Name* name) = 0; |
virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code, |
- SharedFunctionInfo* shared, |
- CompilationInfo* info, Name* source, int line, |
- int column) = 0; |
+ SharedFunctionInfo* shared, Name* source, |
+ int line, int column) = 0; |
virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code, |
int args_count) = 0; |
virtual void CallbackEvent(Name* name, Address entry_point) = 0; |
@@ -501,8 +499,8 @@ class CodeEventLogger : public CodeEventListener { |
void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code, |
SharedFunctionInfo* shared, Name* name) override; |
void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code, |
- SharedFunctionInfo* shared, CompilationInfo* info, |
- Name* source, int line, int column) override; |
+ SharedFunctionInfo* shared, Name* source, int line, |
+ int column) override; |
void RegExpCodeCreateEvent(AbstractCode* code, String* source) override; |
void CallbackEvent(Name* name, Address entry_point) override {} |