+2008-05-09 Kevin McCullough <kmccullough@apple.com>
+
+ Build fix.
+
+ * page/Console.cpp:
+ (WebCore::Console::profile):
+
2008-05-09 Sam Weinig <sam@webkit.org>
Rubber-stamped by Mark Rowe.
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