Index: Source/core/page/ConsoleBase.cpp |
diff --git a/Source/core/page/ConsoleBase.cpp b/Source/core/page/ConsoleBase.cpp |
index 97ef72bafda3d14f6e2de8e5b629789df029046a..e1eaa9e128caea9bdd72b46cbfcdb51e2f544b3d 100644 |
--- a/Source/core/page/ConsoleBase.cpp |
+++ b/Source/core/page/ConsoleBase.cpp |
@@ -158,12 +158,12 @@ void ConsoleBase::profileEnd(ScriptState* state, const String& title) |
void ConsoleBase::time(const String& title) |
{ |
InspectorInstrumentation::startConsoleTiming(context(), title); |
- TRACE_EVENT_COPY_ASYNC_BEGIN0("webkit", title.utf8().data(), this); |
+ TRACE_EVENT_COPY_ASYNC_BEGIN0("webkit.console", title.utf8().data(), this); |
} |
void ConsoleBase::timeEnd(ScriptState* state, const String& title) |
{ |
- TRACE_EVENT_COPY_ASYNC_END0("webkit", title.utf8().data(), this); |
+ TRACE_EVENT_COPY_ASYNC_END0("webkit.console", title.utf8().data(), this); |
RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(state)); |
InspectorInstrumentation::stopConsoleTiming(context(), title, callStack.release()); |
} |