12011-05-04  Cris Neckar  <cdn@chromium.org>
2
3        Reviewed by Adam Barth.
4
5        Expose WebView directly through ChromeClient.
6        https://bugs.webkit.org/show_bug.cgi?id=49902
7
8        * WebCoreSupport/ChromeClientWinCE.h:
9        (WebKit::ChromeClientWinCE::webView):
10
112011-05-04  Tao Bai  <michaelbai@chromium.org>
12
13        Reviewed by David Kilzer.
14
15        Populate touch-icon url to FrameLoaderClient
16        https://bugs.webkit.org/show_bug.cgi?id=59143
17
18        Respect the interface change in FrameLoaderClient.
19
20        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
21        (WebKit::FrameLoaderClientWinCE::dispatchDidChangeIcons):
22        * WebCoreSupport/FrameLoaderClientWinCE.h:
23
242011-05-01  Patrick Gansterer  <paroga@webkit.org>
25
26        [WIN] Unreviewed buildfix after r85434.
27
28        * WebView.cpp:
29        (WebView::paint):
30
312011-04-21  Ryosuke Niwa  <rniwa@webkit.org>
32
33        WinCE build fix after r84574.
34
35        * WebCoreSupport/EditorClientWinCE.cpp:
36        (WebKit::EditorClientWinCE::canCopyCut):
37        (WebKit::EditorClientWinCE::canPaste):
38        * WebCoreSupport/EditorClientWinCE.h:
39
402011-04-19  Vsevolod Vlasov  <vsevik@chromium.org>
41
42        Reviewed by Pavel Feldman.
43
44        Web Inspector: Rename lengthReceived to encodedDataLength/dataLength
45        https://bugs.webkit.org/show_bug.cgi?id=58883
46
47        * WebCoreSupport/FrameLoaderClientWinCE.h:
48
492011-04-04  MORITA Hajime  <morrita@google.com>
50
51        Reviewed by Ryosuke Niwa.
52
53        [Refactoring] SpellCheckingResult should be replaced with TextCheckingResult
54        https://bugs.webkit.org/show_bug.cgi?id=56085
55
56        * WebCoreSupport/EditorClientWinCE.h:
57        (WebKit::EditorClientWinCE::requestCheckingOfString):
58
592011-04-04  Alexey Proskuryakov  <ap@apple.com>
60
61        Reviewed by Dan Bernstein.
62
63        REGRESSION (WebKit2): Caps-Lock indicator sometimes doesn't appear in WebKit2
64        https://bugs.webkit.org/show_bug.cgi?id=51230
65        <rdar://problem/8780989>
66
67        * WebView.cpp: (WebView::handleKeyDown): Moved Caps Lock handling from WebKits to WebCore,
68        because WebKit shouldn't be smart.
69
702011-03-31  Patrick Gansterer  <paroga@webkit.org>
71
72        Unreviewed WinCE build fix for r82580.
73
74        * WebCoreSupport/FrameLoaderClientWinCE.h: StringWithDirection is in WebCore
75                                                   and not in WTF namespace.
76
772011-03-31  Evan Martin  <evan@chromium.org>
78
79        Reviewed by Eric Seidel.
80
81        <title> should support dir attribute
82        https://bugs.webkit.org/show_bug.cgi?id=50961
83
84        Update to new FrameLoaderClient interface.
85
86        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
87        (WebKit::FrameLoaderClientWinCE::dispatchDidReceiveTitle):
88        (WebKit::FrameLoaderClientWinCE::setTitle):
89        * WebCoreSupport/FrameLoaderClientWinCE.h:
90
912011-03-27  Patrick Gansterer  <paroga@webkit.org>
92
93        Reviewed by Andreas Kling.
94
95        [WINCE] Use a appropriate user agent string
96        https://bugs.webkit.org/show_bug.cgi?id=57175
97
98        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
99        (WebKit::FrameLoaderClientWinCE::userAgent):
100
1012011-03-26  Patrick Gansterer  <paroga@webkit.org>
102
103        Unreviewed WinCE build fix.
104
105        * CMakeListsWinCE.txt: Added missing include directory.
106
1072011-03-25  Andy Estes  <aestes@apple.com>
108
109        Reviewed by Adele Peterson.
110
111        REGRESSION (r70748): latest nightly builds kills AC_QuickTime.js
112        https://bugs.webkit.org/show_bug.cgi?id=49016
113
114        Update objectContentType() implementation to handle the
115        shouldPreferPlugInsForImages flag.
116
117        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
118        (WebKit::FrameLoaderClientWinCE::objectContentType):
119        * WebCoreSupport/FrameLoaderClientWinCE.h:
120
1212011-03-24  Sheriff Bot  <webkit.review.bot@gmail.com>
122
123        Unreviewed, rolling out r81916 and r81917.
124        http://trac.webkit.org/changeset/81916
125        http://trac.webkit.org/changeset/81917
126        https://bugs.webkit.org/show_bug.cgi?id=57071
127
128        broke a test on platforms that do not have QuickTime installed
129        (Requested by estes on #webkit).
130
131        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
132        (WebKit::FrameLoaderClientWinCE::objectContentType):
133        * WebCoreSupport/FrameLoaderClientWinCE.h:
134
1352011-03-24  Andy Estes  <aestes@apple.com>
136
137        Reviewed by Darin Adler.
138
139        REGRESSION (r70748): latest nightly builds kills AC_QuickTime.js
140        https://bugs.webkit.org/show_bug.cgi?id=49016
141
142        Update objectContentType() implementation to handle the
143        shouldPreferPlugInsForImages flag.
144
145        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
146        (WebKit::FrameLoaderClientWinCE::objectContentType):
147        * WebCoreSupport/FrameLoaderClientWinCE.h:
148
1492011-03-07  Sam Weinig  <sam@webkit.org>
150
151        Reviewed by Anders Carlsson.
152
153        Replace WebKit2's decidePolicyForMIMEType with decidePolicyForResponse
154        https://bugs.webkit.org/show_bug.cgi?id=55827
155
156        Renamed FrameLoaderClient::dispatchDecidePolicyForMIMEType to dispatchDecidePolicyForResponse
157        and pass the entire response, instead of just the MIMEType.
158
159        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
160        (WebKit::FrameLoaderClientWinCE::dispatchDecidePolicyForResponse):
161        * WebCoreSupport/FrameLoaderClientWinCE.h:
162
1632011-03-03  Alexey Proskuryakov  <ap@apple.com>
164
165        Removing an include of WebCoreKeyboardUIMode.h that Ive just added. It's already included
166        via ChromeClient.h
167
168        * WebCoreSupport/ChromeClientWinCE.h:
169
1702011-03-02  Alexey Proskuryakov  <ap@apple.com>
171
172        Reviewed by Darin Adler.
173
174        REGRESSION (WebKit2): Tab keys no longer observe Full Keyboard Access
175        https://bugs.webkit.org/show_bug.cgi?id=55633
176        <rdar://problem/8963023>
177
178        * WebCoreSupport/ChromeClientWinCE.cpp: (WebKit::ChromeClientWinCE::keyboardUIMode):
179        * WebCoreSupport/ChromeClientWinCE.h:
180        Implement keyboardUIMode() instead of tabsToLinks(). No change in functionality, since
181        this platform doesn't observe or have full keyboard access state.
182
1832011-03-02  Brian Weinstein  <bweinstein@apple.com>
184
185        WinCE build fix.
186
187        * WebCoreSupport/PlatformStrategiesWinCE.h: Add a needed include.
188
1892011-03-02  Brian Weinstein  <bweinstein@apple.com>
190
191        WinCE build fix. Have PlatformStrategiesWinCE inherit from CookiesStrategy,
192        and implement the needed methods.
193
194        * WebCoreSupport/PlatformStrategiesWinCE.cpp:
195        (PlatformStrategiesWinCE::createCookiesStrategy):
196        (PlatformStrategiesWinCE::notifyCookiesChanged):
197        * WebCoreSupport/PlatformStrategiesWinCE.h:
198
1992011-02-28  Chang Shu  <cshu@webkit.org>
200
201        Reviewed by Ryosuke Niwa.
202
203        Remove the support of Frame::isContentEditable and its dependencies.
204        https://bugs.webkit.org/show_bug.cgi?id=54292
205
206        Remove the WebKit side implementation.
207
208        * WebCoreSupport/EditorClientWinCE.cpp:
209        * WebCoreSupport/EditorClientWinCE.h:
210
2112011-02-19  Charlie Reis  <creis@chromium.org>
212
213        Reviewed by Mihai Parparita.
214
215        Ensure loading has stopped in HistoryController::goToItem
216        https://bugs.webkit.org/show_bug.cgi?id=54517
217
218        Add a FrameLoaderClient callback for whether to stop loading before goToItem.
219
220        Test: http/tests/navigation/forward-to-fragment-fires-onload.html
221
222        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
223        (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added.
224        * WebCoreSupport/FrameLoaderClientWinCE.h:
225
2262011-02-10  Luiz Agostini  <luiz.agostini@openbossa.org>
227
228        Reviewed by Adam Roben.
229
230        HTML5 <details> and <summary>: localized text
231        https://bugs.webkit.org/show_bug.cgi?id=54260
232
233        The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
234        provide the default label to be used by a <details> tag that has no <summary> child.
235
236        * WebCoreSupport/PlatformStrategiesWinCE.cpp:
237        (PlatformStrategiesWinCE::defaultDetailsSummaryText):
238        * WebCoreSupport/PlatformStrategiesWinCE.h:
239
2402011-01-26  MORITA Hajime  <morrita@google.com>
241
242        Reviewed by Ryosuke Niwa.
243
244        Refactoring: Extract TextCheckerClient from EditorClient
245        https://bugs.webkit.org/show_bug.cgi?id=53213
246
247        * WebCoreSupport/EditorClientWinCE.h:
248        (WebKit::EditorClientWinCE::textChecker):
249
2502011-02-07  Ryosuke Niwa  <rniwa@webkit.org>
251
252        Reviewed by Adam Barth.
253
254        Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
255        https://bugs.webkit.org/show_bug.cgi?id=52417
256
257        Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
258        not implemented.
259
260        * WebCoreSupport/EditorClientWinCE.cpp:
261        (WebKit::EditorClientWinCE::canCopyCut): Added.
262        (WebKit::EditorClientWinCE::canPaste): Added.
263        * WebCoreSupport/EditorClientWinCE.h:
264
2652011-02-10  Nate Chapin  <japhet@chromium.org>
266
267        Reviewed by Adam Barth.
268
269        Update calls to DocumentWriter.
270        https://bugs.webkit.org/show_bug.cgi?id=50489
271
272        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
273        (WebKit::FrameLoaderClientWinCE::finishedLoading):
274
2752011-02-08  Adam Barth  <abarth@webkit.org>
276
277        Reviewed by Eric Seidel.
278
279        Remove orphan code from old parser
280        https://bugs.webkit.org/show_bug.cgi?id=53984
281
282        * WebCoreSupport/ChromeClientWinCE.cpp:
283        * WebCoreSupport/ChromeClientWinCE.h:
284
2852011-02-07  Enrica Casucci  <enrica@apple.com>
286
287        Reviewed Adam Roben and Darin Adler.
288
289        WebKit2: drag and drop support on Windows.
290        https://bugs.webkit.org/show_bug.cgi?id=52775
291
292        Removed createDragImageForLink from DragClient.
293
294        * WebCoreSupport/DragClientWinCE.cpp:
295        * WebCoreSupport/DragClientWinCE.h:
296
2972011-02-06  Patrick Gansterer  <paroga@webkit.org>
298
299        Reviewed by Martin Robinson.
300
301        [WINCE] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader
302        https://bugs.webkit.org/show_bug.cgi?id=53896
303
304        * WebView.cpp:
305        (WebView::createFrame): Use coreFrame instead of childFrame.
306
3072011-02-03  Adam Langley  <agl@chromium.org>
308
309        Reviewed by Adam Barth.
310
311        Plumb mixed script URL to FrameLoaderClient
312        https://bugs.webkit.org/show_bug.cgi?id=52384
313
314        Regressions covered by http/tests/security/mixedContent/*
315
316        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
317        (WebKit::FrameLoaderClientWinCE::didRunInsecureContent):
318        * WebCoreSupport/FrameLoaderClientWinCE.h:
319
3202011-02-02  Patrick Gansterer  <paroga@webkit.org>
321
322        Unreviewed WinCE build fix for r77398.
323
324        * WebView.cpp:
325        (WebView::paint):
326
3272011-01-28  Dan Bernstein  <mitz@apple.com>
328
329        Reviewed by Sam Weinig.
330
331        <select> can't display right-to-left (rtl) languages
332        https://bugs.webkit.org/show_bug.cgi?id=19785
333
334        * WebCoreSupport/ChromeClientWinCE.cpp:
335        (WebKit::ChromeClientWinCE::selectItemAlignmentFollowsMenuWritingDirection): Added.
336        * WebCoreSupport/ChromeClientWinCE.h:
337
3382011-01-25  Patrick Gansterer  <paroga@webkit.org>
339
340        Reviewed by Adam Roben.
341
342        [WINCE] Ensure layouted frame when painting
343        https://bugs.webkit.org/show_bug.cgi?id=53108
344
345        * WebView.cpp:
346        (WebView::paint):
347
3482011-01-04  Patrick Gansterer  <paroga@webkit.org>
349
350        Unreviewed WinCE build fix.
351
352        * WebCoreSupport/ChromeClientWinCE.cpp:
353        (WebKit::ChromeClientWinCE::exceededDatabaseQuota): Added missing semicolon.
354        (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota):
355        * WebCoreSupport/ChromeClientWinCE.h:
356
3572010-12-29  Patrick Gansterer  <paroga@webkit.org>
358
359        Unreviewed build fix for WinCE after r73802.
360
361        * WebCoreSupport/ContextMenuClientWinCE.cpp:
362        (WebKit::ContextMenuClientWinCE::customizeMenu):
363        * WebCoreSupport/ContextMenuClientWinCE.h:
364
3652010-12-22  Sam Weinig  <sam@webkit.org>
366
367        Reviewed by Darin Adler.
368
369        WebKit2 needs to mirror the frame tree in the UIProcess
370        https://bugs.webkit.org/show_bug.cgi?id=51546
371
372        - Add client functions to notify that a frame has been added or
373          removed from the page cache.
374
375        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
376        (WebKit::FrameLoaderClientWinCE::didSaveToPageCache):
377        (WebKit::FrameLoaderClientWinCE::didRestoreFromPageCache):
378        * WebCoreSupport/FrameLoaderClientWinCE.h:
379
3802010-12-22  Ryosuke Niwa  <rniwa@webkit.org>
381
382        Reviewed by Eric Seidel.
383
384        Editor.h doesn't need to include SelectionController.h
385        https://bugs.webkit.org/show_bug.cgi?id=51441
386
387        Renamed SelectionController::EDirection to SelectionDirection.
388
389        * WebCoreSupport/EditorClientWinCE.cpp:
390        (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
391
3922010-10-28  MORITA Hajime  <morrita@google.com>
393
394        Reviewed by Ojan Vafai.
395
396        spellcheck does not check pasted text
397        https://bugs.webkit.org/show_bug.cgi?id=40092
398
399        Added a stub implememntation.
400
401        * WebCoreSupport/EditorClientWinCE.h:
402        (WebKit::EditorClient::requestCheckingOfString):
403
4042010-12-07  Martin Robinson  <mrobinson@igalia.com>
405
406        Unreviewed, rolling out r73392.
407        http://trac.webkit.org/changeset/73392
408        https://bugs.webkit.org/show_bug.cgi?id=50489
409
410        This commit caused crashes on the GTK+ bots
411
412        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
413        (WebKit::FrameLoaderClientWinCE::finishedLoading):
414
4152010-12-06  Nate Chapin  <japhet@chromium.org>
416
417        Reviewed by Adam Barth.
418
419        Update calls to DocumentWriter.
420        https://bugs.webkit.org/show_bug.cgi?id=50489
421
422        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
423        (WebKit::FrameLoaderClientWinCE::finishedLoading):
424
4252010-12-06  Patrick Gansterer  <paroga@webkit.org>
426
427        Reviewed by Andreas Kling.
428
429        [WINCE] Add build system
430        https://bugs.webkit.org/show_bug.cgi?id=50522
431
432        * CMakeListsWinCE.txt: Added.
433
4342010-12-01  Jia Pu  <jpu@apple.com>
435
436        Reviewed by Darin Adler.
437
438        Support multiple correction candidates panel for misspelled word on Mac OS X.
439        https://bugs.webkit.org/show_bug.cgi?id=50137
440        <rdar://problem/8568059>
441
442        Adopted new function signature defined in base class.
443
444        * WebCoreSupport/EditorClientWinCE.cpp:
445        (WebKit::EditorClientWinCE::getGuessesForWord):
446        * WebCoreSupport/EditorClientWinCE.h:
447
4482010-11-30  Patrick Gansterer  <paroga@webkit.org>
449
450        Reviewed by Adam Roben.
451
452        [WINCE] Add WebView
453        https://bugs.webkit.org/show_bug.cgi?id=50216
454
455        * WebView.cpp: Added.
456        * WebView.h: Added.
457
4582010-11-13  Patrick Gansterer  <paroga@webkit.org>
459
460        Unreviewed, build fix after r71541.
461
462        * WebCoreSupport/ChromeClientWinCE.h:
463
4642010-11-08  Alexey Proskuryakov  <ap@apple.com>
465
466        Reviewed by Darin Adler.
467
468        https://bugs.webkit.org/show_bug.cgi?id=48685
469        Notify UI process about focused frame
470
471        Added an empty implementation of the new ChromeClient method.
472
473        * WebCoreSupport/ChromeClientWinCE.cpp:
474        (WebKit::ChromeClientWinCE::focusedFrameChanged):
475        * WebCoreSupport/ChromeClientWinCE.h:
476
4772010-11-02  Patrick Gansterer  <paroga@webkit.org>
478
479        Unreviewed, build fix after r71041.
480
481        * WebCoreSupport/ChromeClientWinCE.h:
482        (WebKit::ChromeClientWinCE::showContextMenu):
483
4842010-10-30  Patrick Gansterer  <paroga@webkit.org>
485
486        Unreviewed, build fix after r70574.
487
488        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
489        (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage):
490
4912010-10-29  Alexey Proskuryakov  <ap@apple.com>
492
493        Reviewed by Darin Adler.
494
495        https://bugs.webkit.org/show_bug.cgi?id=48576
496        Let WebKit2 client know when a frame is a frameset
497
498        Added a blank implementation of the new FrameLoaderClient method.
499
500        * WebCoreSupport/FrameLoaderClientWinCE.h:
501        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
502        (WebKit::FrameLoaderClientWinCE::dispatchDidBecomeFrameset):
503
5042010-10-26  Jenn Braithwaite  <jennb@chromium.org>
505
506        Reviewed by Dmitry Titov.
507
508        Resource tracking failure when trying to move a frame between documents
509        https://bugs.webkit.org/show_bug.cgi?id=44713
510
511        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
512        (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage):
513        Empty method.
514        * WebCoreSupport/FrameLoaderClientWinCE.h:
515
5162010-10-25  Patrick Gansterer  <paroga@webkit.org>
517
518        Reviewed by David Kilzer.
519
520        Replace _countof with WTF_ARRAY_LENGTH
521        https://bugs.webkit.org/show_bug.cgi?id=48229
522
523        * WebCoreSupport/EditorClientWinCE.cpp:
524        (WebKit::EditorClientWinCE::interpretKeyEvent):
525
5262010-10-22  Sam Weinig  <sam@webkit.org>
527
528        Reviewed by Anders Carlsson.
529
530        WebKit2 needs to pass the current event modifier flags when requesting a new window
531        https://bugs.webkit.org/show_bug.cgi?id=48140
532
533        * WebCoreSupport/ChromeClientWinCE.cpp:
534        (WebKit::ChromeClientWinCE::createWindow):
535        * WebCoreSupport/ChromeClientWinCE.h:
536        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
537        (WebKit::FrameLoaderClientWinCE::dispatchCreatePage):
538        * WebCoreSupport/FrameLoaderClientWinCE.h:
539        Add NavigationAction parameter.
540
5412010-10-22  Patrick Gansterer  <paroga@webkit.org>
542
543        Reviewed by Adam Roben.
544
545        [WINCE] Implement EditorClient::handleKeyboardEvent
546        https://bugs.webkit.org/show_bug.cgi?id=48118
547
548        Copy the implementation from the EFL port.
549
550        * WebCoreSupport/EditorClientWinCE.cpp:
551        (WebKit::EditorClientWinCE::interpretKeyEvent):
552        (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
553        (WebKit::EditorClientWinCE::handleKeyboardEvent):
554        * WebCoreSupport/EditorClientWinCE.h:
555
5562010-10-15  Nikolas Zimmermann  <nzimmermann@rim.com>
557
558        Reviewed by Dirk Schulze.
559
560        Replace some String::format() usages by StringConcatenate in WebKit
561        https://bugs.webkit.org/show_bug.cgi?id=47714
562
563        * WebCoreSupport/PlatformStrategiesWinCE.cpp:
564        (PlatformStrategiesWinCE::imageTitle):
565        (PlatformStrategiesWinCE::multipleFileUploadText):
566
5672010-09-28  Jenn Braithwaite  <jennb@chromium.org>
568
569        Reviewed by Dmitry Titov.
570
571        Added oldPage param to FrameLoaderClient::didTransferChildFrameToNewDocument.
572        https://bugs.webkit.org/show_bug.cgi?id=46663
573
574        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
575        (WebKit::FrameLoaderClientWinCE::didTransferChildFrameToNewDocument):
576        * WebCoreSupport/FrameLoaderClientWinCE.h:
577
5782010-09-23  Patrick Gansterer  <paroga@webkit.org>
579
580        Reviewed by Adam Roben.
581
582        Add PlatformStrategiesWinCE
583        https://bugs.webkit.org/show_bug.cgi?id=46371
584
585        * WebCoreSupport/PlatformStrategiesWinCE.cpp: Copied from WebKit/win/WebCoreSupport/WebPlatformStrategies.cpp.
586        * WebCoreSupport/PlatformStrategiesWinCE.h: Copied from WebKit/win/WebCoreSupport/WebPlatformStrategies.h.
587
5882010-09-23  Patrick Gansterer  <paroga@webkit.org>
589
590        Reviewed by Adam Roben.
591
592        Add ChromeClientWinCE
593        https://bugs.webkit.org/show_bug.cgi?id=46294
594
595        * WebCoreSupport/ChromeClientWinCE.cpp: Added.
596        * WebCoreSupport/ChromeClientWinCE.h: Added.
597
5982010-09-23  Patrick Gansterer  <paroga@webkit.org>
599
600        Unreviewed.
601
602        Build fix for FrameLoaderClientWinCE.
603
604        * WebCoreSupport/FrameLoaderClientWinCE.cpp:
605        (WebKit::FrameLoaderClientWinCE::canShowMIMETypeAsHTML): Add missing method.
606        * WebCoreSupport/FrameLoaderClientWinCE.h:
607
6082010-09-21  Patrick Gansterer  <paroga@webkit.org>
609
610        Reviewed by Adam Roben.
611
612        Add "WinCE" to classname for all WebCoreSupport classes to match filename.
613        https://bugs.webkit.org/show_bug.cgi?id=46175
614
615        * WebCoreSupport/ContextMenuClientWinCE.cpp: Rename ContextMenuClient to ContextMenuClientWinCE.
616        * WebCoreSupport/ContextMenuClientWinCE.h: Ditto.
617        * WebCoreSupport/DragClientWinCE.cpp: Rename DragClient to DragClientWinCE.
618        * WebCoreSupport/DragClientWinCE.h: Ditto.
619        * WebCoreSupport/EditorClientWinCE.cpp: Rename EditorClient to EditorClientWinCE.
620        * WebCoreSupport/EditorClientWinCE.h: Ditto.
621        * WebCoreSupport/InspectorClientWinCE.cpp: Rename InspectorClient to InspectorClientWinCE.
622        * WebCoreSupport/InspectorClientWinCE.h: Ditto.
623
6242010-09-20  Patrick Gansterer  <paroga@paroga.com>
625
626        Reviewed by Adam Roben.
627
628        Add FrameLoaderClientWinCE
629        https://bugs.webkit.org/show_bug.cgi?id=45682
630
631        * WebCoreSupport/FrameLoaderClientWinCE.cpp: Added.
632        * WebCoreSupport/FrameLoaderClientWinCE.h: Added.
633
6342010-09-16  Patrick Gansterer  <paroga@paroga.com>
635
636        Reviewed by Adam Roben.
637
638        [WINCE] Add missing FrameNetworkingContextWinCE::blockedError
639        https://bugs.webkit.org/show_bug.cgi?id=45680
640
641        * WebCoreSupport/FrameNetworkingContextWinCE.cpp:
642        (WebKit::FrameNetworkingContextWinCE::blockedError):
643        * WebCoreSupport/FrameNetworkingContextWinCE.h:
644
6452010-09-13  Patrick Gansterer  <paroga@paroga.com>
646
647        Reviewed by Kenneth Rohde Christiansen.
648
649        Add FrameNetworkingContextWinCE
650        https://bugs.webkit.org/show_bug.cgi?id=45474
651
652        * WebCoreSupport/FrameNetworkingContextWinCE.cpp: Added.
653        (WebKit::FrameNetworkingContextWinCE::FrameNetworkingContextWinCE):
654        (WebKit::FrameNetworkingContextWinCE::userAgent):
655        (WebKit::FrameNetworkingContextWinCE::referrer):
656        * WebCoreSupport/FrameNetworkingContextWinCE.h: Added.
657        (WebKit::FrameNetworkingContextWinCE::create):
658
6592010-08-31  Patrick Gansterer  <paroga@paroga.com>
660
661        Reviewed by Kenneth Rohde Christiansen.
662
663        Add EditorClientWinCE
664        https://bugs.webkit.org/show_bug.cgi?id=44822
665
666        * WebCoreSupport/EditorClientWinCE.cpp: Added.
667        (WebKit::EditorClient::EditorClient):
668        (WebKit::EditorClient::~EditorClient):
669        (WebKit::EditorClient::setInputMethodState):
670        (WebKit::EditorClient::shouldDeleteRange):
671        (WebKit::EditorClient::shouldShowDeleteInterface):
672        (WebKit::EditorClient::isContinuousSpellCheckingEnabled):
673        (WebKit::EditorClient::isGrammarCheckingEnabled):
674        (WebKit::EditorClient::spellCheckerDocumentTag):
675        (WebKit::EditorClient::shouldBeginEditing):
676        (WebKit::EditorClient::shouldEndEditing):
677        (WebKit::EditorClient::shouldInsertText):
678        (WebKit::EditorClient::shouldChangeSelectedRange):
679        (WebKit::EditorClient::shouldApplyStyle):
680        (WebKit::EditorClient::shouldMoveRangeAfterDelete):
681        (WebKit::EditorClient::didBeginEditing):
682        (WebKit::EditorClient::respondToChangedContents):
683        (WebKit::EditorClient::respondToChangedSelection):
684        (WebKit::EditorClient::didEndEditing):
685        (WebKit::EditorClient::didWriteSelectionToPasteboard):
686        (WebKit::EditorClient::didSetSelectionTypesForPasteboard):
687        (WebKit::EditorClient::isEditable):
688        (WebKit::EditorClient::registerCommandForUndo):
689        (WebKit::EditorClient::registerCommandForRedo):
690        (WebKit::EditorClient::clearUndoRedoOperations):
691        (WebKit::EditorClient::canUndo):
692        (WebKit::EditorClient::canRedo):
693        (WebKit::EditorClient::undo):
694        (WebKit::EditorClient::redo):
695        (WebKit::EditorClient::shouldInsertNode):
696        (WebKit::EditorClient::pageDestroyed):
697        (WebKit::EditorClient::smartInsertDeleteEnabled):
698        (WebKit::EditorClient::isSelectTrailingWhitespaceEnabled):
699        (WebKit::EditorClient::toggleContinuousSpellChecking):
700        (WebKit::EditorClient::toggleGrammarChecking):
701        (WebKit::EditorClient::handleKeyboardEvent):
702        (WebKit::EditorClient::handleInputMethodKeydown):
703        (WebKit::EditorClient::textFieldDidBeginEditing):
704        (WebKit::EditorClient::textFieldDidEndEditing):
705        (WebKit::EditorClient::textDidChangeInTextField):
706        (WebKit::EditorClient::doTextFieldCommandFromEvent):
707        (WebKit::EditorClient::textWillBeDeletedInTextField):
708        (WebKit::EditorClient::textDidChangeInTextArea):
709        (WebKit::EditorClient::ignoreWordInSpellDocument):
710        (WebKit::EditorClient::learnWord):
711        (WebKit::EditorClient::checkSpellingOfString):
712        (WebKit::EditorClient::getAutoCorrectSuggestionForMisspelledWord):
713        (WebKit::EditorClient::checkGrammarOfString):
714        (WebKit::EditorClient::updateSpellingUIWithGrammarString):
715        (WebKit::EditorClient::updateSpellingUIWithMisspelledWord):
716        (WebKit::EditorClient::showSpellingUI):
717        (WebKit::EditorClient::spellingUIIsShowing):
718        (WebKit::EditorClient::getGuessesForWord):
719        (WebKit::EditorClient::willSetInputMethodState):
720        * WebCoreSupport/EditorClientWinCE.h: Added.
721
7222010-08-31  Patrick Gansterer  <paroga@paroga.com>
723
724        Reviewed by Kenneth Rohde Christiansen.
725
726        Add DragClientWinCE
727        https://bugs.webkit.org/show_bug.cgi?id=44821
728
729        * WebCoreSupport/DragClientWinCE.cpp: Added.
730        (WebKit::DragClient::willPerformDragDestinationAction):
731        (WebKit::DragClient::willPerformDragSourceAction):
732        (WebKit::DragClient::actionMaskForDrag):
733        (WebKit::DragClient::dragSourceActionMaskForPoint):
734        (WebKit::DragClient::startDrag):
735        (WebKit::DragClient::createDragImageForLink):
736        (WebKit::DragClient::dragControllerDestroyed):
737        * WebCoreSupport/DragClientWinCE.h: Added.
738
7392010-08-31  Patrick Gansterer  <paroga@paroga.com>
740
741        Reviewed by Kenneth Rohde Christiansen.
742
743        Add ContextMenuClientWinCE
744        https://bugs.webkit.org/show_bug.cgi?id=44820
745
746        * WebCoreSupport/ContextMenuClientWinCE.cpp: Added.
747        (WebKit::ContextMenuClient::ContextMenuClient):
748        (WebKit::ContextMenuClient::contextMenuDestroyed):
749        (WebKit::ContextMenuClient::getCustomMenuFromDefaultItems):
750        (WebKit::ContextMenuClient::contextMenuItemSelected):
751        (WebKit::ContextMenuClient::downloadURL):
752        (WebKit::ContextMenuClient::copyImageToClipboard):
753        (WebKit::ContextMenuClient::searchWithGoogle):
754        (WebKit::ContextMenuClient::lookUpInDictionary):
755        (WebKit::ContextMenuClient::speak):
756        (WebKit::ContextMenuClient::stopSpeaking):
757        (WebKit::ContextMenuClient::isSpeaking):
758        * WebCoreSupport/ContextMenuClientWinCE.h: Added.
759
7602010-08-28  Patrick Gansterer  <paroga@paroga.com>
761
762        Reviewed by Adam Roben.
763
764        Add InspectorClientWinCE
765        https://bugs.webkit.org/show_bug.cgi?id=44819
766
767        * WebCoreSupport/InspectorClientWinCE.cpp: Added.
768        (WebKit::InspectorClient::InspectorClient):
769        (WebKit::InspectorClient::~InspectorClient):
770        (WebKit::InspectorClient::inspectorDestroyed):
771        (WebKit::InspectorClient::openInspectorFrontend):
772        (WebKit::InspectorClient::releaseFrontendPage):
773        (WebKit::InspectorClient::highlight):
774        (WebKit::InspectorClient::hideHighlight):
775        (WebKit::InspectorClient::populateSetting):
776        (WebKit::InspectorClient::storeSetting):
777        (WebKit::InspectorClient::sendMessageToFrontend):
778        * WebCoreSupport/InspectorClientWinCE.h: Added.
779