1 2011-01-26 Yury Semikhatsky <yurys@chromium.org>
3 Reviewed by Pavel Feldman.
5 Web Inspector: inspector should start in attached state by default
6 https://bugs.webkit.org/show_bug.cgi?id=53165
8 * WebCoreSupport/WebInspectorClientCF.cpp:
9 (WebInspectorClient::inspectorStartsAttached):
11 2011-01-25 Yury Semikhatsky <yurys@chromium.org>
13 Reviewed by Pavel Feldman.
15 Web Inspector: remove "attached" state related methods from InspectorAgent
16 https://bugs.webkit.org/show_bug.cgi?id=53086
18 * WebCoreSupport/WebInspectorClientCF.cpp:
19 (WebInspectorClient::sendMessageToFrontend):
20 (WebInspectorClient::inspectorStartsAttached):
21 (WebInspectorClient::setInspectorStartsAttached):
22 (WebInspectorClient::releaseFrontendPage):
24 2011-01-03 Pratik Solanki <psolanki@apple.com>
26 Mac build fix. Define WTF_USE_CFNETWORK for Windows build only.
28 * WebCoreSupport/WebInspectorClientCF.cpp:
30 2011-01-03 Brian Weinstein <bweinstein@apple.com>
32 Windows build fix. Define WTF_USE_CFNETWORK in WebInspectorClientCF.
34 * WebCoreSupport/WebInspectorClientCF.cpp:
36 2010-10-18 Pavel Feldman <pfeldman@chromium.org>
38 Reviewed by Simon Fraser.
40 Web Inspector: [crash] when Inspector Open in CSSStyleSelector::loadPendingImages().
41 https://bugs.webkit.org/show_bug.cgi?id=46224
43 * WebCoreSupport/WebInspectorClientCF.cpp:
44 (WebInspectorClient::sendMessageToFrontend):
46 2010-06-14 Ilya Tikhonovsky <loislo@chromium.org>
48 Reviewed by Pavel Feldman.
50 WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
51 data from inspected page to WebInspector as JSON string via http. The native
52 serialization to JSON string is supported by InspectorValue's classes. This patch
53 has the implementation of sendMessageToFrontend function. WebKit version of it still
54 uses ScriptFunctionCall and will be switched to another transport a little bit later.
55 https://bugs.webkit.org/show_bug.cgi?id=40134
57 * WebCoreSupport/WebInspectorClientCF.cpp:
58 (WebInspectorClient::releaseFrontendPage):
59 (WebInspectorClient::sendMessageToFrontend):
61 2010-06-09 Sheriff Bot <webkit.review.bot@gmail.com>
63 Unreviewed, rolling out r60889.
64 http://trac.webkit.org/changeset/60889
65 https://bugs.webkit.org/show_bug.cgi?id=40365
67 gtk bot has some kind of memory corruption (Requested by
70 * WebCoreSupport/WebInspectorClientCF.cpp:
71 (WebInspectorClient::storeSetting):
73 2010-06-07 Ilya Tikhonovsky <loislo@chromium.org>
75 Reviewed by Pavel Feldman.
77 WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
78 data from inspected page to WebInspector as JSON string via http. The native
79 serialization to JSON string is supported by InspectorValue's classes. This patch
80 has the implementation of sendMessageToFrontend function. WebKit version of it still
81 uses ScriptFunctionCall and will be switched to another transport a little bit later.
82 https://bugs.webkit.org/show_bug.cgi?id=40134
84 * WebCoreSupport/WebInspectorClientCF.cpp:
85 (WebInspectorClient::releaseFrontendPage):
86 (WebInspectorClient::sendMessageToFrontend):
88 2010-01-07 Alexey Proskuryakov <ap@apple.com>
90 Reviewed by Geoffrey Garen.
92 https://bugs.webkit.org/show_bug.cgi?id=33057
93 REGRESSION(r49365): typeof(xhr.responseText) != "string" in Windows
95 <rdar://problem/7296920> REGRESSION: WebKit fails to start PeaceKeeper benchmark
97 * WebCoreSupport/WebInspectorClientCF.cpp: Define JS_EXPORTCLASS. I'm not sure why this
98 isn't done in JSC globally for all possible clients, but keeping the current design for now.
100 2009-12-03 Pavel Feldman <pfeldman@dhcp-172-28-174-220.spb.corp.google.com>
102 Reviewed by Timothy Hatcher.
104 Web Inspector: Simplify the settings support in inspector controller.
106 https://bugs.webkit.org/show_bug.cgi?id=32076
108 * WebCoreSupport/WebInspectorClientCF.cpp:
109 (WebInspectorClient::populateSetting):
110 (WebInspectorClient::storeSetting):
112 2009-04-20 Steve Falkenburg <sfalken@apple.com>
114 Separate JavaScriptCore.dll from WebKit.dll.
115 Slight performance improvement or no change on benchmarks.
117 Allows us to break a circular dependency between CFNetwork and WebKit on Windows,
118 and simplifies standalone JavaScriptCore builds.
120 Reviewed by Oliver Hunt.
122 * WebCoreSupport/WebInspectorClientCF.cpp: Workaround for lack of config.h in shared WebKit file (WebKit/win uses config.h from WebCore).
124 2008-12-09 Dimitri Glazkov <dglazkov@chromium.org>
128 * WebCoreSupport/WebInspectorClientCF.cpp:
130 2008-10-24 Adam Roben <aroben@apple.com>
134 * WebCoreSupport/WebInspectorClientCF.cpp: Define WTF_PLATFORM_CF
135 manually. Normally this gets defined on Windows by including config.h,
136 but Mac has no config.h for WebKit, so we can't do that here.
138 2008-10-24 Timothy Hatcher <timothy@apple.com>
140 Implement new InspectorClient methods to work with Settings.
142 https://bugs.webkit.org/show_bug.cgi?id=21856
144 Reviewed by Darin Adler.
146 * WebCoreSupport/WebInspectorClientCF.cpp: Added.
147 (createKeyForPreferences): Helper to make the preference key.
148 (WebInspectorClient::populateSetting): Read the preference value from CFPreferences.
149 (WebInspectorClient::storeSetting): Write the setting value to CFPreferences.
150 (WebInspectorClient::removeSetting): Remove the preference from CFPreferences.