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

Issue 412373003: Implement DOMQuad of geometry interfaces.

Created:
6 years, 5 months ago by zino
Modified:
3 years, 3 months ago
CC:
blink-reviews, arv+blink, sof, eae+blinkwatch, blink-reviews-dom_chromium.org, dglazkov+blink, Inactive
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Implement DOMQuad of geometry interfaces. The DOMQuad can represent a quadrilateral. The specification: http://dev.w3.org/fxtf/geometry/ Intent to Implement: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/V_bJNtOg0oM BUG=388780

Patch Set 1 #

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Patch Set 4 : #

Total comments: 2

Patch Set 5 : #

Patch Set 6 : namespace WebCore -> blink #

Patch Set 7 : rebase #

Patch Set 8 : expected.txt #

Unified diffs Side-by-side diffs Delta from patch set Stats (+596 lines, -5 lines) Patch
A LayoutTests/fast/dom/geometry-interfaces-dom-quad.html View 1 2 3 1 chunk +210 lines, -0 lines 0 comments Download
A LayoutTests/fast/dom/geometry-interfaces-dom-quad-expected.txt View 1 2 3 1 chunk +151 lines, -0 lines 0 comments Download
M LayoutTests/webexposed/global-constructors-listing-expected.txt View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M Source/core/dom/DOMPoint.h View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/dom/DOMPointReadOnly.h View 1 2 3 4 5 6 2 chunks +4 lines, -2 lines 0 comments Download
A Source/core/dom/DOMQuad.h View 1 2 3 4 5 1 chunk +64 lines, -0 lines 0 comments Download
A Source/core/dom/DOMQuad.cpp View 1 2 3 4 5 1 chunk +143 lines, -0 lines 0 comments Download
A Source/core/dom/DOMQuad.idl View 1 chunk +17 lines, -0 lines 0 comments Download

Messages

Total messages: 23 (0 generated)
zino
Please take a look.
6 years, 5 months ago (2014-07-25 08:28:30 UTC) #1
Rik
lgtm
6 years, 5 months ago (2014-07-26 05:50:51 UTC) #2
eseidel
i don't see how this can work. How does: var p = quad.p1; var bounds ...
6 years, 5 months ago (2014-07-26 17:06:28 UTC) #3
eseidel
not lgtm based on above.
6 years, 5 months ago (2014-07-26 17:07:04 UTC) #4
zino
The CQ bit was checked by jinho.bang@samsung.com
6 years, 5 months ago (2014-07-26 20:55:49 UTC) #5
zino
The CQ bit was unchecked by jinho.bang@samsung.com
6 years, 5 months ago (2014-07-26 20:56:15 UTC) #6
haraken
bashi@: FYI, this is another client of Dictionary.
6 years, 4 months ago (2014-07-27 06:58:37 UTC) #7
Rik
On 2014/07/26 17:06:28, eseidel wrote: > i don't see how this can work. > > ...
6 years, 4 months ago (2014-07-28 02:49:54 UTC) #8
zino
https://codereview.chromium.org/412373003/diff/20001/Source/core/dom/DOMQuad.h File Source/core/dom/DOMQuad.h (right): https://codereview.chromium.org/412373003/diff/20001/Source/core/dom/DOMQuad.h#newcode22 Source/core/dom/DOMQuad.h:22: DOMPoint* p1() const { m_needsRecalcBounds = true; return m_p1.get(); ...
6 years, 4 months ago (2014-07-28 11:40:45 UTC) #9
zino
On 2014/07/26 17:06:28, eseidel wrote: > i don't see how this can work. > > ...
6 years, 4 months ago (2014-07-28 11:56:44 UTC) #10
Rik
On 2014/07/28 11:56:44, zino wrote: > > I fixed it. > > Could you please ...
6 years, 4 months ago (2014-07-28 17:01:35 UTC) #11
zino
On 2014/07/28 17:01:35, Rik wrote: > On 2014/07/28 11:56:44, zino wrote: > > > > ...
6 years, 4 months ago (2014-07-29 00:54:49 UTC) #12
Rik
On 2014/07/29 00:54:49, zino wrote: > > Oh.. good point. > I addressed it and ...
6 years, 4 months ago (2014-07-29 03:31:27 UTC) #13
Rik
https://codereview.chromium.org/412373003/diff/70001/Source/core/dom/DOMPoint.h File Source/core/dom/DOMPoint.h (right): https://codereview.chromium.org/412373003/diff/70001/Source/core/dom/DOMPoint.h#newcode18 Source/core/dom/DOMPoint.h:18: virtual void setX(double x) { m_x = x; } ...
6 years, 4 months ago (2014-07-29 03:31:40 UTC) #14
zino
On 2014/07/29 03:31:40, Rik wrote: > Source/core/dom/DOMQuad.h:59: Member<DOMRect> m_bounds; > I think this is wrong. ...
6 years, 4 months ago (2014-07-29 04:53:33 UTC) #15
zino
On 2014/07/29 04:53:33, zino wrote: > On 2014/07/29 03:31:40, Rik wrote: > > Source/core/dom/DOMQuad.h:59: Member<DOMRect> ...
6 years, 4 months ago (2014-07-29 06:08:11 UTC) #16
zino
Sorry, patch set 5.
6 years, 4 months ago (2014-07-29 06:08:50 UTC) #17
Rik
On 2014/07/29 04:53:33, zino wrote: > On 2014/07/29 03:31:40, Rik wrote: > > Source/core/dom/DOMQuad.h:59: Member<DOMRect> ...
6 years, 4 months ago (2014-07-29 06:27:34 UTC) #18
zino
On 2014/07/29 06:27:34, Rik wrote: > On 2014/07/29 04:53:33, zino wrote: > > On 2014/07/29 ...
6 years, 4 months ago (2014-07-29 07:15:58 UTC) #19
Rik
On 2014/07/29 07:15:58, zino wrote: > > // Perform garbage collection > // The anonymous ...
6 years, 4 months ago (2014-07-29 16:17:13 UTC) #20
zino
Ping owners. Please take a look.
6 years, 4 months ago (2014-07-29 22:41:57 UTC) #21
zino
Dear Eric, Could you review again? (I addressed your comments.) Thank you.
6 years, 4 months ago (2014-08-04 08:09:22 UTC) #22
rwlbuis
3 years, 3 months ago (2017-09-21 19:40:27 UTC) #23
zino can we close this? This seems to have landed in other patches anyway.

Powered by Google App Engine
This is Rietveld 408576698