Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1079)

Side by Side Diff: Source/WebKit/wince/ChangeLog

Issue 6541090: Merge 79107 - 2011-02-19 Charlie Reis <creis@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 2011-02-19 Charlie Reis <creis@chromium.org>
2
3 Reviewed by Mihai Parparita.
4
5 Ensure loading has stopped in HistoryController::goToItem
6 https://bugs.webkit.org/show_bug.cgi?id=54517
7
8 Add a FrameLoaderClient callback for whether to stop loading before goTo Item.
9
10 Test: http/tests/navigation/forward-to-fragment-fires-onload.html
11
12 * WebCoreSupport/FrameLoaderClientWinCE.cpp:
13 (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added .
14 * WebCoreSupport/FrameLoaderClientWinCE.h:
15
16 2011-02-10 Luiz Agostini <luiz.agostini@openbossa.org>
17
18 Reviewed by Adam Roben.
19
20 HTML5 <details> and <summary>: localized text
21 https://bugs.webkit.org/show_bug.cgi?id=54260
22
23 The method defaultDetailsSummaryText was added to LocalizationStrategy c lass. It is used to
24 provide the default label to be used by a <details> tag that has no <sum mary> child.
25
26 * WebCoreSupport/PlatformStrategiesWinCE.cpp:
27 (PlatformStrategiesWinCE::defaultDetailsSummaryText):
28 * WebCoreSupport/PlatformStrategiesWinCE.h:
29
30 2011-01-26 MORITA Hajime <morrita@google.com>
31
32 Reviewed by Ryosuke Niwa.
33
34 Refactoring: Extract TextCheckerClient from EditorClient
35 https://bugs.webkit.org/show_bug.cgi?id=53213
36
37 * WebCoreSupport/EditorClientWinCE.h:
38 (WebKit::EditorClientWinCE::textChecker):
39
40 2011-02-07 Ryosuke Niwa <rniwa@webkit.org>
41
42 Reviewed by Adam Barth.
43
44 Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptC anAccessClipboard
45 https://bugs.webkit.org/show_bug.cgi?id=52417
46
47 Added two callback functions, canCopyCut and canPaste to EditorClient. T hey are currently
48 not implemented.
49
50 * WebCoreSupport/EditorClientWinCE.cpp:
51 (WebKit::EditorClientWinCE::canCopyCut): Added.
52 (WebKit::EditorClientWinCE::canPaste): Added.
53 * WebCoreSupport/EditorClientWinCE.h:
54
55 2011-02-10 Nate Chapin <japhet@chromium.org>
56
57 Reviewed by Adam Barth.
58
59 Update calls to DocumentWriter.
60 https://bugs.webkit.org/show_bug.cgi?id=50489
61
62 * WebCoreSupport/FrameLoaderClientWinCE.cpp:
63 (WebKit::FrameLoaderClientWinCE::finishedLoading):
64
65 2011-02-08 Adam Barth <abarth@webkit.org>
66
67 Reviewed by Eric Seidel.
68
69 Remove orphan code from old parser
70 https://bugs.webkit.org/show_bug.cgi?id=53984
71
72 * WebCoreSupport/ChromeClientWinCE.cpp:
73 * WebCoreSupport/ChromeClientWinCE.h:
74
75 2011-02-07 Enrica Casucci <enrica@apple.com>
76
77 Reviewed Adam Roben and Darin Adler.
78
79 WebKit2: drag and drop support on Windows.
80 https://bugs.webkit.org/show_bug.cgi?id=52775
81
82 Removed createDragImageForLink from DragClient.
83
84 * WebCoreSupport/DragClientWinCE.cpp:
85 * WebCoreSupport/DragClientWinCE.h:
86
87 2011-02-06 Patrick Gansterer <paroga@webkit.org>
88
89 Reviewed by Martin Robinson.
90
91 [WINCE] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader
92 https://bugs.webkit.org/show_bug.cgi?id=53896
93
94 * WebView.cpp:
95 (WebView::createFrame): Use coreFrame instead of childFrame.
96
97 2011-02-03 Adam Langley <agl@chromium.org>
98
99 Reviewed by Adam Barth.
100
101 Plumb mixed script URL to FrameLoaderClient
102 https://bugs.webkit.org/show_bug.cgi?id=52384
103
104 Regressions covered by http/tests/security/mixedContent/*
105
106 * WebCoreSupport/FrameLoaderClientWinCE.cpp:
107 (WebKit::FrameLoaderClientWinCE::didRunInsecureContent):
108 * WebCoreSupport/FrameLoaderClientWinCE.h:
109
110 2011-02-02 Patrick Gansterer <paroga@webkit.org>
111
112 Unreviewed WinCE build fix for r77398.
113
114 * WebView.cpp:
115 (WebView::paint):
116
117 2011-01-28 Dan Bernstein <mitz@apple.com>
118
119 Reviewed by Sam Weinig.
120
121 <select> can't display right-to-left (rtl) languages
122 https://bugs.webkit.org/show_bug.cgi?id=19785
123
124 * WebCoreSupport/ChromeClientWinCE.cpp:
125 (WebKit::ChromeClientWinCE::selectItemAlignmentFollowsMenuWritingDirecti on): Added.
126 * WebCoreSupport/ChromeClientWinCE.h:
127
128 2011-01-25 Patrick Gansterer <paroga@webkit.org>
129
130 Reviewed by Adam Roben.
131
132 [WINCE] Ensure layouted frame when painting
133 https://bugs.webkit.org/show_bug.cgi?id=53108
134
135 * WebView.cpp:
136 (WebView::paint):
137
1 2011-01-04 Patrick Gansterer <paroga@webkit.org> 138 2011-01-04 Patrick Gansterer <paroga@webkit.org>
2 139
3 Unreviewed WinCE build fix. 140 Unreviewed WinCE build fix.
4 141
5 * WebCoreSupport/ChromeClientWinCE.cpp: 142 * WebCoreSupport/ChromeClientWinCE.cpp:
6 (WebKit::ChromeClientWinCE::exceededDatabaseQuota): Added missing semico lon. 143 (WebKit::ChromeClientWinCE::exceededDatabaseQuota): Added missing semico lon.
7 (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota): 144 (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota):
8 * WebCoreSupport/ChromeClientWinCE.h: 145 * WebCoreSupport/ChromeClientWinCE.h:
9 146
10 2010-12-29 Patrick Gansterer <paroga@webkit.org> 147 2010-12-29 Patrick Gansterer <paroga@webkit.org>
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 (WebKit::InspectorClient::~InspectorClient): 559 (WebKit::InspectorClient::~InspectorClient):
423 (WebKit::InspectorClient::inspectorDestroyed): 560 (WebKit::InspectorClient::inspectorDestroyed):
424 (WebKit::InspectorClient::openInspectorFrontend): 561 (WebKit::InspectorClient::openInspectorFrontend):
425 (WebKit::InspectorClient::releaseFrontendPage): 562 (WebKit::InspectorClient::releaseFrontendPage):
426 (WebKit::InspectorClient::highlight): 563 (WebKit::InspectorClient::highlight):
427 (WebKit::InspectorClient::hideHighlight): 564 (WebKit::InspectorClient::hideHighlight):
428 (WebKit::InspectorClient::populateSetting): 565 (WebKit::InspectorClient::populateSetting):
429 (WebKit::InspectorClient::storeSetting): 566 (WebKit::InspectorClient::storeSetting):
430 (WebKit::InspectorClient::sendMessageToFrontend): 567 (WebKit::InspectorClient::sendMessageToFrontend):
431 * WebCoreSupport/InspectorClientWinCE.h: Added. 568 * WebCoreSupport/InspectorClientWinCE.h: Added.
OLDNEW
« no previous file with comments | « Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.cpp ('k') | Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698