OLD | NEW |
| 1 2013-02-11 Alexandre Elias <aelias@chromium.org> |
| 2 |
| 3 [chromium] Apply page scale to all WebInputEvent types |
| 4 https://bugs.webkit.org/show_bug.cgi?id=109370 |
| 5 |
| 6 Reviewed by James Robinson. |
| 7 |
| 8 Previously we only adjusted a few common input event types by page |
| 9 scale, but in fact almost every position and size in WebInputEvents |
| 10 requires it. |
| 11 |
| 12 I also took the opportunity to change some WebGestureEvent members to |
| 13 floats (which I checked causes no warnings in Chromium-side code with |
| 14 GCC or Clang). |
| 15 |
| 16 New WebInputEventConversionTest: InputEventsScaling |
| 17 |
| 18 * public/WebInputEvent.h: |
| 19 (WebKit::WebGestureEvent::WebGestureEvent): |
| 20 * src/WebInputEventConversion.cpp: |
| 21 (WebKit::widgetScaleFactor): |
| 22 (WebKit): |
| 23 (WebKit::PlatformMouseEventBuilder::PlatformMouseEventBuilder): |
| 24 (WebKit::PlatformWheelEventBuilder::PlatformWheelEventBuilder): |
| 25 (WebKit::PlatformGestureEventBuilder::PlatformGestureEventBuilder): |
| 26 (WebKit::PlatformTouchPointBuilder::PlatformTouchPointBuilder): |
| 27 (WebKit::updateWebMouseEventFromWebCoreMouseEvent): |
| 28 (WebKit::WebMouseEventBuilder::WebMouseEventBuilder): |
| 29 (WebKit::addTouchPoints): |
| 30 (WebKit::WebTouchEventBuilder::WebTouchEventBuilder): |
| 31 (WebKit::WebGestureEventBuilder::WebGestureEventBuilder): |
| 32 * src/WebViewImpl.cpp: |
| 33 (WebKit::WebViewImpl::handleGestureEvent): |
| 34 (WebKit::WebViewImpl::hasTouchEventHandlersAt): |
| 35 (WebKit::WebViewImpl::handleInputEvent): |
| 36 * tests/WebInputEventConversionTest.cpp: |
| 37 (WebCore::TEST): |
| 38 (WebCore): |
| 39 |
| 40 2013-02-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| 41 |
| 42 Unreviewed, rolling out r142568. |
| 43 http://trac.webkit.org/changeset/142568 |
| 44 https://bugs.webkit.org/show_bug.cgi?id=109541 |
| 45 |
| 46 Broke the build, won't compile. (Requested by alancutter on |
| 47 #webkit). |
| 48 |
| 49 * tests/GraphicsLayerChromiumTest.cpp: |
| 50 (WebKit::GraphicsLayerChromiumTest::GraphicsLayerChromiumTest): |
| 51 * tests/ScrollingCoordinatorChromiumTest.cpp: |
| 52 (WebKit::FakeWebViewClient::initializeLayerTreeView): |
| 53 |
| 54 2013-02-11 James Robinson <jamesr@chromium.org> |
| 55 |
| 56 [chromium] Add WebUnitTestSupport::createLayerTreeViewForTesting for web
kit_unit_tests |
| 57 https://bugs.webkit.org/show_bug.cgi?id=109403 |
| 58 |
| 59 Reviewed by Adam Barth. |
| 60 |
| 61 * tests/GraphicsLayerChromiumTest.cpp: |
| 62 (WebKit::GraphicsLayerChromiumTest::GraphicsLayerChromiumTest): |
| 63 * tests/ScrollingCoordinatorChromiumTest.cpp: |
| 64 (WebKit::FakeWebViewClient::initializeLayerTreeView): |
| 65 |
| 66 2013-02-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| 67 |
| 68 Unreviewed. Rolled Chromium DEPS to r181817. Requested by |
| 69 "James Robinson" <jamesr@chromium.org> via sheriffbot. |
| 70 |
| 71 * DEPS: |
| 72 |
| 73 2013-02-11 David Grogan <dgrogan@chromium.org> |
| 74 |
| 75 IndexedDB: Add UnknownError to WebIDBDatabaseException |
| 76 https://bugs.webkit.org/show_bug.cgi?id=109519 |
| 77 |
| 78 Reviewed by Adam Barth. |
| 79 |
| 80 * public/WebIDBDatabaseException.h: |
| 81 * src/AssertMatchingEnums.cpp: |
| 82 |
| 83 2013-02-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| 84 |
| 85 Unreviewed. Rolled Chromium DEPS to r181787. Requested by |
| 86 thakis_ via sheriffbot. |
| 87 |
| 88 * DEPS: |
| 89 |
| 90 2013-02-11 Nico Weber <thakis@chromium.org> |
| 91 |
| 92 Remove web intents code |
| 93 https://bugs.webkit.org/show_bug.cgi?id=109501 |
| 94 |
| 95 Reviewed by Eric Seidel. |
| 96 |
| 97 See thread "Removing ENABLE(WEB_INTENTS) code" on webkit-dev. |
| 98 |
| 99 * WebKit.gyp: |
| 100 * features.gypi: |
| 101 * public/WebDeliveredIntentClient.h: Removed. |
| 102 * public/WebFrame.h: |
| 103 (WebKit): |
| 104 (WebFrame): |
| 105 * public/WebFrameClient.h: |
| 106 (WebKit): |
| 107 * public/WebIntent.h: Removed. |
| 108 * public/WebIntentRequest.h: Removed. |
| 109 * public/WebIntentServiceInfo.h: Removed. |
| 110 * public/WebRuntimeFeatures.h: |
| 111 (WebRuntimeFeatures): |
| 112 * src/DeliveredIntentClientImpl.cpp: Removed. |
| 113 * src/DeliveredIntentClientImpl.h: Removed. |
| 114 * src/FrameLoaderClientImpl.cpp: |
| 115 * src/FrameLoaderClientImpl.h: |
| 116 (FrameLoaderClientImpl): |
| 117 * src/WebFrameImpl.cpp: |
| 118 * src/WebFrameImpl.h: |
| 119 (WebKit): |
| 120 (WebFrameImpl): |
| 121 * src/WebIntent.cpp: Removed. |
| 122 * src/WebIntentRequest.cpp: Removed. |
| 123 * src/WebIntentServiceInfo.cpp: Removed. |
| 124 * src/WebRuntimeFeatures.cpp: |
| 125 |
| 126 2013-02-11 Florin Malita <fmalita@chromium.org> |
| 127 |
| 128 Unreviewed. Rolled Chromium DEPS to r181770. |
| 129 |
| 130 * DEPS: |
| 131 |
| 132 2013-02-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| 133 |
| 134 Unreviewed. Rolled Chromium DEPS to r181742. Requested by |
| 135 fmalita_ via sheriffbot. |
| 136 |
| 137 * DEPS: |
| 138 |
| 139 2013-02-11 Rouslan Solomakhin <rouslan@chromium.org> |
| 140 |
| 141 [Chromium] Replace correct misspelled range in WebKit::WebFrameImpl::rep
laceMisspelledRange |
| 142 https://bugs.webkit.org/show_bug.cgi?id=108513 |
| 143 |
| 144 Reviewed by Tony Chang. |
| 145 |
| 146 WebKit::WebFrameImpl::replaceMisspelledRange is going to be used by Chro
mium instead of |
| 147 WebKit::WebFrameImpl::replaceSelection for correcting misspellings. The
current implementation |
| 148 of WebKit::WebFrameImpl::replaceMisspelledRange sometimes replaces the w
rong range. This change |
| 149 uses Range::create instead of TextIterator::rangeFromLocationAndLength t
o select the correct |
| 150 range. This change also disables smart replace in WebKit::WebFrameImpl::
replaceMisspelledRange |
| 151 to avoid introducing spaces around misspellings. |
| 152 |
| 153 * src/WebFrameImpl.cpp: |
| 154 (WebKit::WebFrameImpl::replaceMisspelledRange): Replace correct misspell
ed range. |
| 155 * tests/WebFrameTest.cpp: Add unit test for WebKit::WebFrameImpl::replac
eMisspelledRange method. |
| 156 |
| 157 2013-02-11 Alexei Filippov <alph@chromium.org> |
| 158 |
| 159 Web Inspector: Split Profiler domain in protocol into Profiler and HeapP
rofiler |
| 160 https://bugs.webkit.org/show_bug.cgi?id=108653 |
| 161 |
| 162 Reviewed by Yury Semikhatsky. |
| 163 |
| 164 Currently CPU and heap profilers share the same domain 'Profiler' in the
protocol. |
| 165 In fact these two profile types have not too much in common. So put each
into its own domain. |
| 166 It should also help when Profiles panel gets split into several tools. |
| 167 This is the phase 1 which adds InspectorHeapProfilerAgent but doesn't |
| 168 change the original InspectorProfilerAgent. |
| 169 |
| 170 * src/WebDevToolsAgentImpl.cpp: |
| 171 (WebKit::WebDevToolsAgent::shouldInterruptForMessage): |
| 172 |
| 173 2013-02-11 Abhishek Arya <inferno@chromium.org> |
| 174 |
| 175 Add ASSERT_WITH_SECURITY_IMPLICATION to detect out of bounds access |
| 176 https://bugs.webkit.org/show_bug.cgi?id=108981 |
| 177 |
| 178 Reviewed by Eric Seidel. |
| 179 |
| 180 * src/AutofillPopupMenuClient.cpp: |
| 181 (WebKit::AutofillPopupMenuClient::getSuggestion): |
| 182 (WebKit::AutofillPopupMenuClient::getLabel): |
| 183 (WebKit::AutofillPopupMenuClient::getIcon): |
| 184 (WebKit::AutofillPopupMenuClient::removeSuggestionAtIndex): |
| 185 (WebKit::AutofillPopupMenuClient::valueChanged): |
| 186 (WebKit::AutofillPopupMenuClient::selectionChanged): |
| 187 * src/ChromeClientImpl.cpp: |
| 188 (WebKit::ChromeClientImpl::shouldRunModalDialogDuringPageDismissal): |
| 189 |
1 2013-02-10 James Robinson <jamesr@chromium.org> | 190 2013-02-10 James Robinson <jamesr@chromium.org> |
2 | 191 |
3 [chromium] Enable more of webkit_unit_tests in component builds | 192 [chromium] Enable more of webkit_unit_tests in component builds |
4 https://bugs.webkit.org/show_bug.cgi?id=109369 | 193 https://bugs.webkit.org/show_bug.cgi?id=109369 |
5 | 194 |
6 Reviewed by Darin Fisher. | 195 Reviewed by Darin Fisher. |
7 | 196 |
8 Updates all webkit_unit_tests (except for LevelDBTest) to go through the
Platform API instead of directly | 197 Updates all webkit_unit_tests (except for LevelDBTest) to go through the
Platform API instead of directly |
9 calling into webkit_support so they work in component builds. | 198 calling into webkit_support so they work in component builds. |
10 | 199 |
(...skipping 13205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13216 | 13405 |
13217 [Chromium-Win] Implement LocaleWin::dateFormat | 13406 [Chromium-Win] Implement LocaleWin::dateFormat |
13218 https://bugs.webkit.org/show_bug.cgi?id=98117 | 13407 https://bugs.webkit.org/show_bug.cgi?id=98117 |
13219 | 13408 |
13220 Reviewed by Kentaro Hara. | 13409 Reviewed by Kentaro Hara. |
13221 | 13410 |
13222 * tests/LocaleWinTest.cpp: | 13411 * tests/LocaleWinTest.cpp: |
13223 (TEST_F): Add tests for LocaleWin::dateFormat. | 13412 (TEST_F): Add tests for LocaleWin::dateFormat. |
13224 | 13413 |
13225 == Rolled over to ChangeLog-2012-10-02 == | 13414 == Rolled over to ChangeLog-2012-10-02 == |
OLD | NEW |