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):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@76684
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+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):
+
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
{
String value;
populateSetting(inspectorStartsAttachedSetting, &value);
+ if (value.isEmpty())
+ return true;
return value == "true";
}