Changeset 76684 in webkit


Ignore:
Timestamp:
Jan 26, 2011 3:43:09 AM (13 years ago)
Author:
yurys@chromium.org
Message:

2011-01-26 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: inspector should start in attached state by default
https://bugs.webkit.org/show_bug.cgi?id=53165

  • WebCoreSupport/WebInspectorClientCF.cpp: (WebInspectorClient::inspectorStartsAttached):
Location:
trunk/Source/WebKit/cf
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/cf/ChangeLog

    r76594 r76684  
     12011-01-26  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: inspector should start in attached state by default
     6        https://bugs.webkit.org/show_bug.cgi?id=53165
     7
     8        * WebCoreSupport/WebInspectorClientCF.cpp:
     9        (WebInspectorClient::inspectorStartsAttached):
     10
    1112011-01-25  Yury Semikhatsky  <yurys@chromium.org>
    212
  • trunk/Source/WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp

    r76594 r76684  
    110110    String value;
    111111    populateSetting(inspectorStartsAttachedSetting, &value);
     112    if (value.isEmpty())
     113        return true;
    112114    return value == "true";
    113115}
Note: See TracChangeset for help on using the changeset viewer.