Bug 107157

Summary: Make Console::shouldPrintExceptions work in WebKit2
Product: WebKit Reporter: Timothy Hatcher <timothy>
Component: WebKit2Assignee: Timothy Hatcher <timothy>
Status: RESOLVED FIXED    
Severity: Normal CC: benjamin, joepeck
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Proposed Change joepeck: review+, joepeck: commit-queue-

Description Timothy Hatcher 2013-01-17 12:19:59 PST
Logging console messages to stdout helps working on the Web Inspector.
Comment 1 Timothy Hatcher 2013-01-17 12:26:56 PST
Created attachment 183244 [details]
Proposed Change
Comment 2 Joseph Pecoraro 2013-01-17 12:46:15 PST
Comment on attachment 183244 [details]
Proposed Change

View in context: https://bugs.webkit.org/attachment.cgi?id=183244&action=review

r=me with the switch to Settings.in

> Source/WebCore/page/Console.cpp:218
> +    for (unsigned i = 0; i < arguments->argumentCount(); ++i) {

NiT: You might as well update `i` to size_t here. ScriptArguments::argumentCount returns a size_t.

> Source/WebCore/page/Console.cpp:227
>          for (unsigned i = 0; i < callStack->size(); ++i) {

Ditto for ScriptCallstack::size.

> Source/WebCore/page/Settings.h:372
> +        bool m_logsPageMessagesToSystemConsoleEnabled : 1;

For simple boolean settings like this you should use probably declare it in "Source/WebCore/page/Settings.in". A single line:

    logsPageMessagesToSystemConsoleEnabled initial=false

That would also take care of initialization this in the constructor, which appears to be missing from this patch. And getters should be const.
Comment 3 Timothy Hatcher 2013-01-17 14:34:22 PST
r140044
Comment 4 Benjamin Poulain 2013-01-17 15:28:03 PST
+ http://trac.webkit.org/changeset/140060