| Index: src/code-stubs.cc
|
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
|
| index 7094da33b843781201af433c25a81da3b057c250..774306f39ec774230bd9fe0c0fcf01c5c59e9e5c 100644
|
| --- a/src/code-stubs.cc
|
| +++ b/src/code-stubs.cc
|
| @@ -15,7 +15,6 @@
|
| #include "src/ic/ic.h"
|
| #include "src/macro-assembler.h"
|
| #include "src/parsing/parser.h"
|
| -#include "src/profiler/cpu-profiler.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -83,8 +82,8 @@ void CodeStub::RecordCodeGeneration(Handle<Code> code) {
|
| std::ostringstream os;
|
| os << *this;
|
| PROFILE(isolate(),
|
| - CodeCreateEvent(Logger::STUB_TAG, AbstractCode::cast(*code),
|
| - os.str().c_str()));
|
| + CodeCreateEvent(CodeEventListener::STUB_TAG,
|
| + AbstractCode::cast(*code), os.str().c_str()));
|
| Counters* counters = isolate()->counters();
|
| counters->total_stubs_code_size()->Increment(code->instruction_size());
|
| #ifdef DEBUG
|
|
|