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

Issue 277213004: Oilpan: add transition types to shadow DOM supporting objects. (Closed)

Created:
6 years, 7 months ago by sof
Modified:
6 years, 7 months ago
CC:
blink-reviews, blink-reviews-html_chromium.org, webcomponents-bugzilla_chromium.org, blink-reviews-css, eae+blinkwatch, ed+blinkwatch_opera.com, blink-reviews-dom_chromium.org, dglazkov+blink, apavlov+blink_chromium.org, darktears, rune+blink, rwlbuis
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Oilpan: add transition types to shadow DOM supporting objects. R=haraken@chromium.org,ager@chromium.org BUG=357163 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=174084

Patch Set 1 #

Patch Set 2 : Remove incorrect FINAL decl #

Total comments: 7

Patch Set 3 : Use DISALLOW_ALLOCATION() instead #

Total comments: 8

Patch Set 4 : Use Member<const Node> #

Unified diffs Side-by-side diffs Delta from patch set Stats (+69 lines, -44 lines) Patch
M Source/core/css/SelectorChecker.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/SiblingTraversalStrategies.h View 2 chunks +5 lines, -3 lines 0 comments Download
M Source/core/css/resolver/SharedStyleFinder.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Node.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/shadow/ContentDistribution.h View 1 2 3 2 chunks +11 lines, -8 lines 0 comments Download
M Source/core/dom/shadow/ContentDistribution.cpp View 1 2 3 3 chunks +8 lines, -2 lines 0 comments Download
M Source/core/dom/shadow/ElementShadow.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/shadow/ElementShadow.cpp View 1 2 3 4 chunks +5 lines, -3 lines 0 comments Download
M Source/core/dom/shadow/InsertionPoint.h View 1 3 chunks +4 lines, -2 lines 0 comments Download
M Source/core/dom/shadow/InsertionPoint.cpp View 1 2 3 3 chunks +8 lines, -2 lines 0 comments Download
M Source/core/dom/shadow/ShadowRoot.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/shadow/ShadowRoot.cpp View 1 2 3 3 chunks +4 lines, -5 lines 0 comments Download
M Source/core/dom/shadow/ShadowRootRareData.h View 3 chunks +12 lines, -7 lines 0 comments Download
M Source/core/events/EventPath.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLContentElement.h View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLContentElement.cpp View 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
sof
Please take a look.
6 years, 7 months ago (2014-05-12 12:07:01 UTC) #1
haraken
https://codereview.chromium.org/277213004/diff/2/Source/core/dom/shadow/ContentDistribution.h File Source/core/dom/shadow/ContentDistribution.h (right): https://codereview.chromium.org/277213004/diff/2/Source/core/dom/shadow/ContentDistribution.h#newcode42 Source/core/dom/shadow/ContentDistribution.h:42: ALLOW_ONLY_INLINE_ALLOCATION(); This should be DISALLOW_ALLOCATION, since ContentDistribution is a ...
6 years, 7 months ago (2014-05-12 12:21:37 UTC) #2
sof
Awesome, thanks for the (quick) review. https://codereview.chromium.org/277213004/diff/2/Source/core/dom/shadow/ContentDistribution.h File Source/core/dom/shadow/ContentDistribution.h (right): https://codereview.chromium.org/277213004/diff/2/Source/core/dom/shadow/ContentDistribution.h#newcode42 Source/core/dom/shadow/ContentDistribution.h:42: ALLOW_ONLY_INLINE_ALLOCATION(); On 2014/05/12 ...
6 years, 7 months ago (2014-05-12 12:37:48 UTC) #3
haraken
LGTM https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ContentDistribution.cpp File Source/core/dom/shadow/ContentDistribution.cpp (right): https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ContentDistribution.cpp#newcode51 Source/core/dom/shadow/ContentDistribution.cpp:51: WillBeHeapHashMap<RawPtrWillBeMember<Node>, size_t>::const_iterator it = m_indices.find(const_cast<Node*>(node)); It would be ...
6 years, 7 months ago (2014-05-12 13:38:35 UTC) #4
sof
https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ElementShadow.cpp File Source/core/dom/shadow/ElementShadow.cpp (right): https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ElementShadow.cpp#newcode243 Source/core/dom/shadow/ElementShadow.cpp:243: NodeToDestinationInsertionPoints::const_iterator it = m_nodeToInsertionPoints.find(const_cast<Node*>(key)); On 2014/05/12 13:38:35, haraken wrote: ...
6 years, 7 months ago (2014-05-12 21:57:19 UTC) #5
haraken
LGTM with a comment about const_cast. https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ElementShadow.cpp File Source/core/dom/shadow/ElementShadow.cpp (right): https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ElementShadow.cpp#newcode243 Source/core/dom/shadow/ElementShadow.cpp:243: NodeToDestinationInsertionPoints::const_iterator it = ...
6 years, 7 months ago (2014-05-13 05:49:50 UTC) #6
Mads Ager (chromium)
LGTM2 I agree with Haraken's comments on using Member<const Node> where you used to have ...
6 years, 7 months ago (2014-05-13 15:01:58 UTC) #7
sof
On 2014/05/13 05:49:50, haraken wrote: > LGTM with a comment about const_cast. > > https://codereview.chromium.org/277213004/diff/30001/Source/core/dom/shadow/ElementShadow.cpp ...
6 years, 7 months ago (2014-05-15 10:25:42 UTC) #8
Mads Ager (chromium)
On 2014/05/15 10:25:42, sof wrote: > On 2014/05/13 05:49:50, haraken wrote: > > LGTM with ...
6 years, 7 months ago (2014-05-15 11:00:13 UTC) #9
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 7 months ago (2014-05-15 13:15:07 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/277213004/50001
6 years, 7 months ago (2014-05-15 13:15:30 UTC) #11
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-15 14:01:04 UTC) #12
commit-bot: I haz the power
6 years, 7 months ago (2014-05-15 14:39:55 UTC) #13
Message was sent while issue was closed.
Change committed as 174084

Powered by Google App Engine
This is Rietveld 408576698