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

Issue 1603813002: CSS Typed OM: Add TranslationTransformComponent (Closed)

Created:
4 years, 11 months ago by tridgell
Modified:
4 years, 10 months ago
CC:
darktears, apavlov+blink_chromium.org, blink-reviews, blink-reviews-css, chromium-reviews, dglazkov+blink, rwlbuis
Base URL:
https://chromium.googlesource.com/chromium/src.git@cssValueAndCssString
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

CSS Typed OM: Add TranslationTransformComponent Implements TranslationTransformComponent. Uses Oilpan Member variables for x, y, and z. Note: 3D Translations cannot have a z component that contains a percentage. BUG=545318 Spec: https://drafts.css-houdini.org/css-typed-om/#translation Committed: https://crrev.com/7105b24d061dffa35f94c595043792cd81f879db Cr-Commit-Position: refs/heads/master@{#375119}

Patch Set 1 #

Patch Set 2 : Translation 3d construtor throws if z contains percent #

Patch Set 3 : Add to global-interface-expected #

Patch Set 4 : Rename TranslationTransformComponent => Translation in idl #

Total comments: 9

Patch Set 5 : m_is2D => is2D() method and change consts #

Patch Set 6 : Rebase and add TODO for Translation::asMatrix #

Total comments: 2

Patch Set 7 : Remove unnecessary class declaraion #

Messages

Total messages: 23 (9 generated)
tridgell
4 years, 10 months ago (2016-02-03 03:32:04 UTC) #3
meade_UTC10
lgtm
4 years, 10 months ago (2016-02-03 04:03:29 UTC) #5
alancutter (OOO until 2018)
lgtm with nits. https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode57 third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h:57: { } We probably only need ...
4 years, 10 months ago (2016-02-09 09:05:55 UTC) #6
alancutter (OOO until 2018)
https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode16 third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h:16: WTF_MAKE_NONCOPYABLE(TranslationTransformComponent); This is unnecessary with private constructors.
4 years, 10 months ago (2016-02-10 02:06:24 UTC) #7
tridgell
On 2016/02/10 at 02:06:24, alancutter wrote: > https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h > File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): > > https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode16 ...
4 years, 10 months ago (2016-02-10 02:30:07 UTC) #8
tridgell
https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode57 third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h:57: { } On 2016/02/09 at 09:05:55, alancutter wrote: > ...
4 years, 10 months ago (2016-02-10 02:32:06 UTC) #9
Timothy Loh
https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode16 third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h:16: WTF_MAKE_NONCOPYABLE(TranslationTransformComponent); On 2016/02/10 02:06:24, alancutter wrote: > This is ...
4 years, 10 months ago (2016-02-10 02:34:59 UTC) #11
tridgell
Deleted the patch that removed the macro, so now it is still there. https://codereview.chromium.org/1603813002/diff/60001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File ...
4 years, 10 months ago (2016-02-10 05:10:55 UTC) #13
Timothy Loh
renamed to Translation in spec? https://codereview.chromium.org/1603813002/diff/120001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h (right): https://codereview.chromium.org/1603813002/diff/120001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h#newcode14 third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h:14: class MatrixTransformComponent; don't think ...
4 years, 10 months ago (2016-02-11 05:45:06 UTC) #14
tridgell
TranslationTransformComponent -> Translation. See CL https://codereview.chromium.org/1664093002 for similar changes in other classes. https://codereview.chromium.org/1603813002/diff/120001/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h File third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h ...
4 years, 10 months ago (2016-02-12 03:13:08 UTC) #15
Timothy Loh
ok lgtm
4 years, 10 months ago (2016-02-12 04:12:18 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1603813002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1603813002/140001
4 years, 10 months ago (2016-02-12 04:19:05 UTC) #19
commit-bot: I haz the power
Committed patchset #7 (id:140001)
4 years, 10 months ago (2016-02-12 04:25:33 UTC) #21
commit-bot: I haz the power
4 years, 10 months ago (2016-02-16 22:41:35 UTC) #23
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/7105b24d061dffa35f94c595043792cd81f879db
Cr-Commit-Position: refs/heads/master@{#375119}

Powered by Google App Engine
This is Rietveld 408576698