page->inspectorController()->addMessageToConsole(JSMessageSource, LogMessageLevel, exec, arguments, 0, url);
}
-void Console::profile(const String& /*title*/) const
+void Console::profile(const String& title) const
{
// FIXME: Figure out something to do with the title passed in so that it can
// be displayed by the inspector.
if (!page)
return;
- Profiler::profiler()->startProfiling(page->group().identifier());
+ Profiler::profiler()->startProfiling(page->group().identifier(), title);
}
void Console::profileEnd() const