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

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

Issue 12330081: Merge 143032 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
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/WebInputEventConversion.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-02-15 Alexandre Elias <aelias@chromium.org>
2
3 [chromium] WebInputEventBuilders should not reverse page scale
4 https://bugs.webkit.org/show_bug.cgi?id=109901
5
6 Reviewed by James Robinson.
7
8 Though in theory logical that if WebInputEvent -> PlatformEvent
9 conversions divide by page scale, then the reverse builders should
10 multiply, in reality the only user of the reverse builders is
11 plugins which expect the same coordinate space as WebCore.
12
13 * src/WebInputEventConversion.cpp:
14 (WebKit::updateWebMouseEventFromWebCoreMouseEvent):
15 (WebKit::WebMouseEventBuilder::WebMouseEventBuilder):
16 (WebKit::addTouchPoints):
17 (WebKit::WebGestureEventBuilder::WebGestureEventBuilder):
18 * tests/WebInputEventConversionTest.cpp:
19 (WebCore::TEST):
20
21 2013-02-15 Anders Carlsson <andersca@apple.com>
22
23 Remove const from a bunch of StorageArea member functions
24 https://bugs.webkit.org/show_bug.cgi?id=109957
25
26 Reviewed by Beth Dakin.
27
28 Update for WebCore changes.
29
30 * src/StorageAreaProxy.cpp:
31 (WebCore::StorageAreaProxy::length):
32 (WebCore::StorageAreaProxy::key):
33 (WebCore::StorageAreaProxy::getItem):
34 (WebCore::StorageAreaProxy::contains):
35 (WebCore::StorageAreaProxy::canAccessStorage):
36 (WebCore::StorageAreaProxy::memoryBytesUsedByCache):
37 * src/StorageAreaProxy.h:
38 (StorageAreaProxy):
39
40 2013-02-15 Keishi Hattori <keishi@webkit.org>
41
42 PagePopupController.formatMonth should support short month format
43 https://bugs.webkit.org/show_bug.cgi?id=109530
44
45 Reviewed by Kent Tamura.
46
47 * tests/LocaleMacTest.cpp:
48 (LocaleMacTest::formatMonth):
49 (TEST_F):
50
51 2013-02-15 Keishi Hattori <keishi@webkit.org>
52
53 Add setValue and closePopup methods to PagePopupController
54 https://bugs.webkit.org/show_bug.cgi?id=109897
55
56 Reviewed by Kent Tamura.
57
58 * src/ColorChooserPopupUIController.cpp:
59 (WebKit::ColorChooserPopupUIController::setValue):
60 (WebKit):
61 * src/ColorChooserPopupUIController.h:
62 (ColorChooserPopupUIController):
63 * src/DateTimeChooserImpl.cpp:
64 (WebKit::DateTimeChooserImpl::setValueAndClosePopup): Use setValue and c losePopup.
65 (WebKit):
66 (WebKit::DateTimeChooserImpl::setValue):
67 (WebKit::DateTimeChooserImpl::closePopup):
68 * src/DateTimeChooserImpl.h:
69 (DateTimeChooserImpl):
70
71 2013-02-15 Allan Sandfeld Jensen <allan.jensen@digia.com>
72
73 Simplify hitTestResultAtPoint and nodesFromRect APIs
74 https://bugs.webkit.org/show_bug.cgi?id=95720
75
76 Reviewed by Julien Chaffraix.
77
78 Update calls to new API.
79
80 * src/ContextMenuClientImpl.cpp:
81 (WebKit::selectMisspelledWord):
82 * src/FrameLoaderClientImpl.cpp:
83 (WebKit::FrameLoaderClientImpl::dispatchDecidePolicyForNavigationAction) :
84 * src/WebFrameImpl.cpp:
85 (WebKit::WebFrameImpl::characterIndexForPoint):
86 * src/WebPluginContainerImpl.cpp:
87 (WebKit::WebPluginContainerImpl::isRectTopmost):
88 * src/WebViewImpl.cpp:
89 (WebKit::WebViewImpl::handleMouseDown):
90 (WebKit::WebViewImpl::computeBlockBounds):
91 (WebKit::WebViewImpl::bestTouchLinkNode):
92 (WebKit::WebViewImpl::hitTestResultForWindowPos):
93
94 2013-02-14 Vsevolod Vlasov <vsevik@chromium.org>
95
96 Unreviewed chromium test fix: incorrect field was used for UISourceCode url.
97
98 * src/js/Tests.js:
99 (.TestSuite.prototype.testNoScriptDuplicatesOnPanelSwitch.checkNoDuplica tes):
100 (.TestSuite.prototype.uiSourceCodesToString_):
101
1 2013-02-14 David Trainor <dtrainor@chromium.org> 102 2013-02-14 David Trainor <dtrainor@chromium.org>
2 103
3 [chromium] No triggering autofill on unfocus 104 [chromium] No triggering autofill on unfocus
4 https://bugs.webkit.org/show_bug.cgi?id=109735 105 https://bugs.webkit.org/show_bug.cgi?id=109735
5 106
6 Reviewed by James Robinson. 107 Reviewed by James Robinson.
7 108
8 Need to notify the autofill client to not process text changes when we'r e setting 109 Need to notify the autofill client to not process text changes when we'r e setting
9 focus to false and are trying to commit a composition. 110 focus to false and are trying to commit a composition.
10 111
(...skipping 13741 matching lines...) Expand 10 before | Expand all | Expand 10 after
13752 13853
13753 [Chromium-Win] Implement LocaleWin::dateFormat 13854 [Chromium-Win] Implement LocaleWin::dateFormat
13754 https://bugs.webkit.org/show_bug.cgi?id=98117 13855 https://bugs.webkit.org/show_bug.cgi?id=98117
13755 13856
13756 Reviewed by Kentaro Hara. 13857 Reviewed by Kentaro Hara.
13757 13858
13758 * tests/LocaleWinTest.cpp: 13859 * tests/LocaleWinTest.cpp:
13759 (TEST_F): Add tests for LocaleWin::dateFormat. 13860 (TEST_F): Add tests for LocaleWin::dateFormat.
13760 13861
13761 == Rolled over to ChangeLog-2012-10-02 == 13862 == Rolled over to ChangeLog-2012-10-02 ==
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698