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

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

Issue 12233004: Merge 141540 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebViewImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 2013-01-31 Aurimas Liutikas <aurimas@chromium.org>
2
3 [Chromium] WebViewTest.SetCompositionFromExistingText failing after r141 479
4 https://bugs.webkit.org/show_bug.cgi?id=108543
5
6 Reviewed by Ryosuke Niwa.
7
8 Fixing a bug that was uncovered after fixing http://trac.webkit.org/chan geset/141479
9
10 * src/WebViewImpl.cpp:
11 (WebKit::WebViewImpl::setCompositionFromExistingText):
12 * tests/WebViewTest.cpp:
13 Re-enabling the test
14
15 2013-01-31 Hajime Morrita <morrita@google.com>
16
17 Unreviewed, followup fix for r141535.
18
19 * tests/WebFrameTest.cpp:
20
21 2013-01-31 Sheriff Bot <webkit.review.bot@gmail.com>
22
23 Unreviewed. Rolled Chromium DEPS to r180023. Requested by
24 thakis_ via sheriffbot.
25
26 * DEPS:
27
28 2013-01-31 Hajime Morrita <morrita@google.com>
29
30 Unreviewed, disabling failing test.
31
32 * tests/WebFrameTest.cpp:
33
34 2013-01-31 Sheriff Bot <webkit.review.bot@gmail.com>
35
36 Unreviewed, rolling out r141479.
37 http://trac.webkit.org/changeset/141479
38 https://bugs.webkit.org/show_bug.cgi?id=108564
39
40 breaks chromium test (Requested by morrita on #webkit).
41
42 * public/WebViewClient.h:
43 * src/EditorClientImpl.cpp:
44 (WebKit::EditorClientImpl::respondToChangedSelection):
45
46 2013-01-31 Alec Flett <alecflett@chromium.org>
47
48 IndexedDB: remove old transaction backend bootstrap code
49 https://bugs.webkit.org/show_bug.cgi?id=103923
50
51 Reviewed by Dimitri Glazkov.
52
53 Remove all deprecated WebKit APIs from
54 the IDB backend.
55
56 * WebKit.gyp:
57 * public/WebIDBCallbacks.h:
58 (WebKit):
59 * public/WebIDBDatabase.h:
60 (WebKit):
61 * public/WebIDBTransaction.h: Removed.
62 * public/WebIDBTransactionCallbacks.h: Removed.
63 * src/AssertMatchingEnums.cpp:
64 * src/IDBCallbacksProxy.cpp:
65 * src/IDBDatabaseBackendProxy.cpp:
66 * src/IDBDatabaseBackendProxy.h:
67 (IDBDatabaseBackendProxy):
68 * src/IDBTransactionBackendProxy.cpp: Removed.
69 * src/IDBTransactionBackendProxy.h: Removed.
70 * src/IDBTransactionCallbacksProxy.cpp: Removed.
71 * src/IDBTransactionCallbacksProxy.h: Removed.
72 * src/WebIDBCallbacksImpl.cpp:
73 * src/WebIDBDatabaseImpl.cpp:
74 (WebKit):
75 * src/WebIDBDatabaseImpl.h:
76 (WebKit):
77 (WebIDBDatabaseImpl):
78 * src/WebIDBTransactionCallbacksImpl.cpp: Removed.
79 * src/WebIDBTransactionCallbacksImpl.h: Removed.
80 * src/WebIDBTransactionImpl.cpp: Removed.
81 * src/WebIDBTransactionImpl.h: Removed.
82 * tests/IDBAbortOnCorruptTest.cpp:
83 * tests/IDBDatabaseBackendTest.cpp:
84
85 2013-01-31 Rouslan Solomakhin <rouslan@chromium.org>
86
87 [Chromium] Select multi-word misspelling on context click
88 https://bugs.webkit.org/show_bug.cgi?id=108509
89
90 Reviewed by Tony Chang.
91
92 * src/ContextMenuClientImpl.cpp:
93 (WebKit):
94 (WebKit::selectMisspellingAsync): Added utility function to get the miss pelling for asynchronous spellcheck.
95 (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems): Select m ulti-word misspelling on context click.
96
97 2013-01-31 Florin Malita <fmalita@chromium.org>
98
99 [Chromium] Unreviewed gardening.
100
101 WebViewTest.SetCompositionFromExistingText failing after r141479.
102
103 * tests/WebViewTest.cpp:
104
105 2013-01-31 Alexandre Elias <aelias@chromium.org>
106
107 [chromium] Rework page scale factor limits initialization
108 https://bugs.webkit.org/show_bug.cgi?id=108446
109
110 Reviewed by James Robinson.
111
112 When loading a page with viewportEnabled, both the limits
113 specified by the viewport tag and the content width need to be
114 considered before we initialize the minimum page scale (and
115 pageScaleFactor itself usually to the same value). The timing has
116 proven tricky to get correct.
117
118 This patch simplifies the flow by computing the
119 limits only at the end of layouts and at no other time. In combination
120 with https://bugs.webkit.org/show_bug.cgi?id=107922 which sets
121 needsLayout() appropriately, this results in a more robust and easy
122 to understand sequence.
123
124 Fixes FixedLayoutInitializeAtMinimumPageScale test.
125
126 * src/ChromeClientImpl.cpp:
127 (WebKit::ChromeClientImpl::dispatchViewportPropertiesDidChange):
128 * src/WebViewImpl.cpp:
129 (WebKit::WebViewImpl::WebViewImpl):
130 (WebKit::WebViewImpl::resize):
131 (WebKit::WebViewImpl::setPageScaleFactorLimits):
132 (WebKit::WebViewImpl::computePageScaleFactorLimits):
133 (WebKit::WebViewImpl::layoutUpdated):
134 (WebKit::WebViewImpl::didChangeContentsSize):
135 * src/WebViewImpl.h:
136 (WebKit::WebViewImpl::setInitialPageScaleFactor):
137 (WebViewImpl):
138 * tests/WebFrameTest.cpp:
139
140 2013-01-31 Aurimas Liutikas <aurimas@chromium.org>
141
142 Editor::m_compositionNode not updated on HTMLInputElement::setValue()
143 https://bugs.webkit.org/show_bug.cgi?id=107737
144
145 Reviewed by Ryosuke Niwa.
146
147 * public/WebViewClient.h:
148 (WebKit::WebViewClient::didCancelCompositionOnSelectionChange):
149 Adding a callback to let the WebViewClient know that the composition has been cancelled.
150 * src/EditorClientImpl.cpp:
151 (WebKit::EditorClientImpl::respondToChangedSelection):
152 Adding a call composition if it is no longer valid.
153
154 2013-01-31 Mark Pilgrim <pilgrim@chromium.org>
155
156 [Chromium] Move LocalizedStrings to WebCore
157 https://bugs.webkit.org/show_bug.cgi?id=108488
158
159 Reviewed by Adam Barth.
160
161 Part of a larger refactoring series; see tracking bug 106829.
162
163 * WebKit.gyp:
164 * src/LocalizedStrings.cpp: Removed.
165
166 2013-01-31 Enrica Casucci <enrica@apple.com>
167
168 WebKit2: provide new bundle APIs to allow bundle clients to be notified of pasteboard access.
169 https://bugs.webkit.org/show_bug.cgi?id=108396.
170 <rdar://problem/12920461>
171
172 Reviewed by Alexey Proskuryakov.
173
174 Adds stub implementation for WebKit of the new EditorClient methods.
175
176 * src/EditorClientImpl.cpp:
177 (WebKit::EditorClientImpl::willWriteSelectionToPasteboard):
178 (WebKit::EditorClientImpl::getClientPasteboardDataForRange):
179 * src/EditorClientImpl.h:
180
181 2013-01-31 Chris Hopman <cjhopman@chromium.org>
182
183 [chromium] Make selection handling work in applyPageScaleInCompositor mo de
184 https://bugs.webkit.org/show_bug.cgi?id=107831
185
186 Reviewed by Ryosuke Niwa.
187
188 These functions expect a window point. When in
189 applyPageScaleFactorInCompositor mode, the points need to be unscaled
190 by the page scale factor.
191
192 * src/WebFrameImpl.cpp:
193 (WebKit::WebFrameImpl::selectRange):
194 (WebKit::WebFrameImpl::moveCaretSelectionTowardsWindowPoint):
195
196 2013-01-31 Tom Sepez <tsepez@chromium.org>
197
198 [v8] Enable binding integrity on mac
199 https://bugs.webkit.org/show_bug.cgi?id=108500
200
201 Reviewed by Adam Barth.
202
203 Patch is correct if existing tests pass without new crashes.
204
205 * features.gypi:
206 Set ENABLE_BINDING_INTEGRITY=1 when OS=="mac"
207
1 2013-01-31 Dan Alcantara <dfalcantara@chromium.org> 208 2013-01-31 Dan Alcantara <dfalcantara@chromium.org>
2 209
3 WebFrameTest.DisambiguationPopup is failing 210 WebFrameTest.DisambiguationPopup is failing
4 https://bugs.webkit.org/show_bug.cgi?id=108160 211 https://bugs.webkit.org/show_bug.cgi?id=108160
5 212
6 Reviewed by Adam Barth. 213 Reviewed by Adam Barth.
7 214
8 Fix the unit test so that it is using the right HTML file. 215 Fix the unit test so that it is using the right HTML file.
9 216
10 * tests/WebFrameTest.cpp: 217 * tests/WebFrameTest.cpp:
(...skipping 8919 matching lines...) Expand 10 before | Expand all | Expand 10 after
8930 9137
8931 [Chromium-Win] Implement LocaleWin::dateFormat 9138 [Chromium-Win] Implement LocaleWin::dateFormat
8932 https://bugs.webkit.org/show_bug.cgi?id=98117 9139 https://bugs.webkit.org/show_bug.cgi?id=98117
8933 9140
8934 Reviewed by Kentaro Hara. 9141 Reviewed by Kentaro Hara.
8935 9142
8936 * tests/LocaleWinTest.cpp: 9143 * tests/LocaleWinTest.cpp:
8937 (TEST_F): Add tests for LocaleWin::dateFormat. 9144 (TEST_F): Add tests for LocaleWin::dateFormat.
8938 9145
8939 == Rolled over to ChangeLog-2012-10-02 == 9146 == Rolled over to ChangeLog-2012-10-02 ==
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698