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

Issue 149053002: Blink WebTouchPoint stores its location as WebFloatPoint, instead of WebPoint. (Closed)

Created:
6 years, 10 months ago by tdresser
Modified:
6 years, 9 months ago
Reviewers:
jamesr, abarth-chromium
CC:
blink-reviews, dglazkov+blink, abarth-chromium, Jói
Base URL:
https://chromium.googlesource.com/chromium/blink@master
Visibility:
Public.

Description

Blink WebTouchPoint stores its location as WebFloatPoint, instead of WebPoint. This is the second of three patches converting WebTouchPoint to use WebFloatPoint instead of WebPoint. The first patch (https://codereview.chromium.org/140973005) allows chromium to accept WebFloatPoint (it just casts all the floats to ints). The third patch (https://codereview.chromium.org/148453012/) will clean up the chromium side. BUG=336807 R=jamesr@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=168641

Patch Set 1 #

Patch Set 2 : Rebase / minor fixes. #

Total comments: 9

Patch Set 3 : Address jamesr's comments. #

Patch Set 4 : Add comment explaining why ../ is used in DEPS. #

Patch Set 5 : Remove layout test. #

Patch Set 6 : Relative path in DEPS lives in public/web. #

Total comments: 1

Patch Set 7 : Remove DEPS change. #

Patch Set 8 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+20 lines, -13 lines) Patch
M Source/web/WebInputEventConversion.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/web/tests/WebInputEventConversionTest.cpp View 1 2 3 4 5 6 7 1 chunk +13 lines, -6 lines 0 comments Download
M public/web/WebTouchPoint.h View 2 chunks +5 lines, -5 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
tdresser
jochen@, can you take a look?
6 years, 10 months ago (2014-01-31 21:52:59 UTC) #1
jamesr
https://codereview.chromium.org/149053002/diff/20001/LayoutTests/fast/events/touch/touch-coords-rounded.html File LayoutTests/fast/events/touch/touch-coords-rounded.html (right): https://codereview.chromium.org/149053002/diff/20001/LayoutTests/fast/events/touch/touch-coords-rounded.html#newcode1 LayoutTests/fast/events/touch/touch-coords-rounded.html:1: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> say <!DOCTYPE html> if ...
6 years, 10 months ago (2014-02-03 21:48:22 UTC) #2
tdresser
https://codereview.chromium.org/149053002/diff/20001/LayoutTests/fast/events/touch/touch-coords-rounded.html File LayoutTests/fast/events/touch/touch-coords-rounded.html (right): https://codereview.chromium.org/149053002/diff/20001/LayoutTests/fast/events/touch/touch-coords-rounded.html#newcode1 LayoutTests/fast/events/touch/touch-coords-rounded.html:1: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> On 2014/02/03 21:48:23, jamesr ...
6 years, 10 months ago (2014-02-04 14:46:22 UTC) #3
Jói
https://codereview.chromium.org/149053002/diff/20001/public/DEPS File public/DEPS (right): https://codereview.chromium.org/149053002/diff/20001/public/DEPS#newcode3 public/DEPS:3: "+../platform" On 2014/02/04 14:46:23, tdresser wrote: > On 2014/02/03 ...
6 years, 10 months ago (2014-02-04 15:10:15 UTC) #4
tdresser
On 2014/02/04 15:10:15, Jói wrote: > https://codereview.chromium.org/149053002/diff/20001/public/DEPS > File public/DEPS (right): > > https://codereview.chromium.org/149053002/diff/20001/public/DEPS#newcode3 > ...
6 years, 10 months ago (2014-02-04 20:33:34 UTC) #5
tdresser
On 2014/02/04 20:33:34, tdresser wrote: > On 2014/02/04 15:10:15, Jói wrote: > > https://codereview.chromium.org/149053002/diff/20001/public/DEPS > ...
6 years, 10 months ago (2014-02-05 18:20:44 UTC) #6
jamesr
I don't think it's reasonable to have tests for WebIDL hidden in something that looks ...
6 years, 10 months ago (2014-02-05 20:37:53 UTC) #7
tdresser
On 2014/02/05 20:37:53, jamesr wrote: > I don't think it's reasonable to have tests for ...
6 years, 10 months ago (2014-02-06 14:50:46 UTC) #8
tdresser
On 2014/02/06 14:50:46, tdresser wrote: > On 2014/02/05 20:37:53, jamesr wrote: > > I don't ...
6 years, 10 months ago (2014-02-07 16:44:04 UTC) #9
jochen (gone - plz use gerrit)
On 2014/02/07 16:44:04, tdresser wrote: > On 2014/02/06 14:50:46, tdresser wrote: > > On 2014/02/05 ...
6 years, 10 months ago (2014-02-10 12:41:37 UTC) #10
tdresser
On 2014/02/10 12:41:37, jochen wrote: > On 2014/02/07 16:44:04, tdresser wrote: > > On 2014/02/06 ...
6 years, 10 months ago (2014-02-10 13:54:05 UTC) #11
jamesr
I still don't think the DEPS change is correct.
6 years, 10 months ago (2014-02-12 20:39:23 UTC) #12
tdresser
I've moved the DEPS change into public/web - reducing the scope of the relative path ...
6 years, 10 months ago (2014-02-20 14:37:21 UTC) #13
abarth-chromium
https://codereview.chromium.org/149053002/diff/370001/public/web/WebTouchPoint.h File public/web/WebTouchPoint.h (right): https://codereview.chromium.org/149053002/diff/370001/public/web/WebTouchPoint.h#newcode35 public/web/WebTouchPoint.h:35: #include "../platform/WebFloatPoint.h" These should be: #include "public/platform/WebCommon.h" but that ...
6 years, 10 months ago (2014-02-20 21:05:09 UTC) #14
tdresser
On 2014/02/20 21:05:09, abarth wrote: > https://codereview.chromium.org/149053002/diff/370001/public/web/WebTouchPoint.h > File public/web/WebTouchPoint.h (right): > > https://codereview.chromium.org/149053002/diff/370001/public/web/WebTouchPoint.h#newcode35 > ...
6 years, 10 months ago (2014-02-24 17:00:57 UTC) #15
jamesr
On 2014/02/24 17:00:57, tdresser wrote: > On 2014/02/20 21:05:09, abarth wrote: > > > https://codereview.chromium.org/149053002/diff/370001/public/web/WebTouchPoint.h ...
6 years, 10 months ago (2014-02-27 01:26:18 UTC) #16
tdresser
DEPS change removed.
6 years, 9 months ago (2014-02-27 16:18:13 UTC) #17
tdresser
On 2014/02/27 16:18:13, tdresser wrote: > DEPS change removed. jamesr, can you take another look?
6 years, 9 months ago (2014-03-03 18:21:22 UTC) #18
jamesr
lgtm
6 years, 9 months ago (2014-03-03 20:15:38 UTC) #19
tdresser
The CQ bit was checked by tdresser@chromium.org
6 years, 9 months ago (2014-03-05 19:30:11 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tdresser@chromium.org/149053002/440001
6 years, 9 months ago (2014-03-05 19:30:21 UTC) #21
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-05 20:07:59 UTC) #22
commit-bot: I haz the power
Retried try job too often on blink_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=blink_presubmit&number=17409
6 years, 9 months ago (2014-03-05 20:08:00 UTC) #23
hartmanng
6 years, 9 months ago (2014-03-06 15:12:54 UTC) #24
Message was sent while issue was closed.
Committed patchset #8 manually as r168641.

Powered by Google App Engine
This is Rietveld 408576698