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