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

Issue 1707373002: Do not use Node in FocusController, 3rd (Closed)

Created:
4 years, 10 months ago by hayato
Modified:
4 years, 10 months ago
Reviewers:
yuzuchan, kochi
CC:
chromium-reviews, blink-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@focus-navigation-advance-document
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Do not use Node in FocusController, 3rd This is one of the series of patches. See the bug for the motivation. - 1st CL: https://codereview.chromium.org/1704333002/ - 2nd CL: https://codereview.chromium.org/1711673002/ BUG=587743 Committed: https://crrev.com/fbc4ecfc0d9e7b70f3a0c4fd79d837ff87fc6faf Cr-Commit-Position: refs/heads/master@{#376680}

Patch Set 1 #

Patch Set 2 : fix typo #

Total comments: 7

Patch Set 3 : addressed #

Patch Set 4 : use ElementTraversal::lastWithin #

Total comments: 2

Patch Set 5 : update #

Unified diffs Side-by-side diffs Delta from patch set Stats (+107 lines, -105 lines) Patch
M third_party/WebKit/Source/core/page/FocusController.cpp View 1 2 3 4 14 chunks +107 lines, -105 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 44 (21 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/1
4 years, 10 months ago (2016-02-18 12:49:54 UTC) #2
hayato
fix typo
4 years, 10 months ago (2016-02-18 12:53:30 UTC) #4
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/20001
4 years, 10 months ago (2016-02-18 12:54:00 UTC) #5
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 10 months ago (2016-02-18 14:22:28 UTC) #7
hayato
PTAL
4 years, 10 months ago (2016-02-19 04:29:16 UTC) #11
kochi
is this the last one? https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp File third_party/WebKit/Source/core/page/FocusController.cpp (right): https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp#newcode103 third_party/WebKit/Source/core/page/FocusController.cpp:103: Node& root = m_rootTreeScope->rootNode(); ...
4 years, 10 months ago (2016-02-19 07:25:35 UTC) #15
hayato
addressed
4 years, 10 months ago (2016-02-19 07:47:20 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/40001
4 years, 10 months ago (2016-02-19 07:47:41 UTC) #18
hayato
https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp File third_party/WebKit/Source/core/page/FocusController.cpp (right): https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp#newcode103 third_party/WebKit/Source/core/page/FocusController.cpp:103: Node& root = m_rootTreeScope->rootNode(); On 2016/02/19 07:25:35, kochi wrote: ...
4 years, 10 months ago (2016-02-19 07:47:44 UTC) #19
hayato
On 2016/02/19 07:25:35, kochi wrote: > is this the last one? I do not have ...
4 years, 10 months ago (2016-02-19 07:49:38 UTC) #20
hayato
use ElementTraversal::lastWithin
4 years, 10 months ago (2016-02-19 08:19:05 UTC) #22
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/60001
4 years, 10 months ago (2016-02-19 08:19:17 UTC) #23
hayato
https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp File third_party/WebKit/Source/core/page/FocusController.cpp (right): https://codereview.chromium.org/1707373002/diff/20001/third_party/WebKit/Source/core/page/FocusController.cpp#newcode110 third_party/WebKit/Source/core/page/FocusController.cpp:110: return last->isElementNode() ? toElement(last) : ElementTraversal::previous(*last); On 2016/02/19 07:47:44, ...
4 years, 10 months ago (2016-02-19 08:21:28 UTC) #24
kochi
lgtm (added note: we discussed offline about difference between NodeTraversal::lastWithin() and ElementTraversal::lastWithin(), and agreed that ...
4 years, 10 months ago (2016-02-19 08:21:39 UTC) #25
hayato
update
4 years, 10 months ago (2016-02-19 08:25:47 UTC) #27
hayato
https://codereview.chromium.org/1707373002/diff/60001/third_party/WebKit/Source/core/page/FocusController.cpp File third_party/WebKit/Source/core/page/FocusController.cpp (right): https://codereview.chromium.org/1707373002/diff/60001/third_party/WebKit/Source/core/page/FocusController.cpp#newcode103 third_party/WebKit/Source/core/page/FocusController.cpp:103: ContainerNode& root = m_rootTreeScope->rootNode(); On 2016/02/19 08:21:39, kochi wrote: ...
4 years, 10 months ago (2016-02-19 08:25:55 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/80001
4 years, 10 months ago (2016-02-19 08:27:28 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/25685)
4 years, 10 months ago (2016-02-19 12:22:25 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/80001
4 years, 10 months ago (2016-02-19 12:41:29 UTC) #36
commit-bot: I haz the power
Try jobs failed on following builders: linux_android_rel_ng on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_android_rel_ng/builds/25844)
4 years, 10 months ago (2016-02-19 16:39:53 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1707373002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1707373002/80001
4 years, 10 months ago (2016-02-22 01:53:50 UTC) #40
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 10 months ago (2016-02-22 03:00:01 UTC) #42
commit-bot: I haz the power
4 years, 10 months ago (2016-02-22 03:01:20 UTC) #44
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/fbc4ecfc0d9e7b70f3a0c4fd79d837ff87fc6faf
Cr-Commit-Position: refs/heads/master@{#376680}

Powered by Google App Engine
This is Rietveld 408576698