From 2a28ee7a4c60e09eca62988ce25c98850ae3066c Mon Sep 17 00:00:00 2001 From: "kmccullough@apple.com" Date: Fri, 9 May 2008 21:06:33 +0000 Subject: [PATCH] 2008-05-09 Kevin McCullough Build fix. * page/Console.cpp: (WebCore::Console::profile): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@33010 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebCore/ChangeLog | 7 +++++++ WebCore/page/Console.cpp | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 3b6a8c5..76b1e3b 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2008-05-09 Kevin McCullough + + Build fix. + + * page/Console.cpp: + (WebCore::Console::profile): + 2008-05-09 Sam Weinig Rubber-stamped by Mark Rowe. diff --git a/WebCore/page/Console.cpp b/WebCore/page/Console.cpp index 3f596bf..1c04bbe 100644 --- a/WebCore/page/Console.cpp +++ b/WebCore/page/Console.cpp @@ -126,7 +126,7 @@ void Console::log(ExecState* exec, const List& arguments) 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. @@ -134,7 +134,7 @@ void Console::profile(const String& /*title*/) const if (!page) return; - Profiler::profiler()->startProfiling(page->group().identifier()); + Profiler::profiler()->startProfiling(page->group().identifier(), title); } void Console::profileEnd() const -- 1.8.3.1