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

Issue 1602773006: blink: Make WebMainThreadScrollingReason wrap the cc enum. (Closed)

Created:
4 years, 11 months ago by danakj
Modified:
4 years, 11 months ago
CC:
blink-layers+watch_chromium.org, blink-reviews, blink-reviews-api_chromium.org, cc-bugs_chromium.org, chromium-reviews, dglazkov+blink, kenneth.christiansen, kinuko+watch, piman
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

blink: Make WebMainThreadScrollingReason wrap the cc enum. This moves the WebMainThreadScrollingReason from public/platform/ to platform/scroll/, as it is no longer used in the WebLayer API explicitly, and renames it to just MainThreadScrollingReason. We change the type to be an alias for the cc type instead of maintaining static asserts that they match. Depends on: https://codereview.chromium.org/1604053002/ CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Committed: https://crrev.com/0536dbbcab956b879d2bee49f7e4629cf753a9fa Cr-Commit-Position: refs/heads/master@{#371151}

Patch Set 1 #

Patch Set 2 : enumwrap: . #

Total comments: 5

Patch Set 3 : enumwrap: comment #

Total comments: 4

Patch Set 4 : enumwrap: rebase #

Patch Set 5 : enumwrap: . #

Patch Set 6 : enumwrap: rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+51 lines, -93 lines) Patch
M cc/blink/web_layer_impl.h View 2 chunks +1 line, -3 lines 0 comments Download
M cc/blink/web_layer_impl.cc View 1 2 3 4 5 1 chunk +5 lines, -41 lines 0 comments Download
M cc/input/main_thread_scrolling_reason.h View 1 2 3 2 chunks +2 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp View 1 2 3 8 chunks +13 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/blink_platform.gypi View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/scroll/DEPS View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/platform/scroll/MainThreadScrollingReason.h View 1 chunk +18 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/PageOverlay.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/public/platform/DEPS View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/public/platform/WebLayer.h View 2 chunks +1 line, -2 lines 0 comments Download
D third_party/WebKit/public/platform/WebMainThreadScrollingReason.h View 1 chunk +0 lines, -26 lines 0 comments Download

Messages

Total messages: 31 (15 generated)
danakj
elliot please review blink aelias please review cc https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/platform/scroll/DEPS File third_party/WebKit/Source/platform/scroll/DEPS (right): https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/platform/scroll/DEPS#newcode2 third_party/WebKit/Source/platform/scroll/DEPS:2: "+cc", ...
4 years, 11 months ago (2016-01-20 00:03:05 UTC) #4
danakj
https://codereview.chromium.org/1602773006/diff/20001/cc/blink/web_layer_impl.cc File cc/blink/web_layer_impl.cc (right): https://codereview.chromium.org/1602773006/diff/20001/cc/blink/web_layer_impl.cc#newcode353 cc/blink/web_layer_impl.cc:353: // TODO(tdresser): This is comparing less than a bit ...
4 years, 11 months ago (2016-01-20 00:04:35 UTC) #6
aelias_OOO_until_Jul13
lgtm
4 years, 11 months ago (2016-01-20 00:06:49 UTC) #7
esprehn
lgtm https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h File third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h (right): https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h#newcode165 third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h:165: uint32_t m_lastMainThreadScrollingReasons; we often do // ActualType in ...
4 years, 11 months ago (2016-01-20 00:09:56 UTC) #8
danakj
https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h File third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h (right): https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h#newcode165 third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h:165: uint32_t m_lastMainThreadScrollingReasons; On 2016/01/20 00:09:56, esprehn wrote: > we ...
4 years, 11 months ago (2016-01-20 00:15:11 UTC) #9
tdresser
LGTM Thanks a lot! https://codereview.chromium.org/1602773006/diff/60001/cc/blink/web_layer_impl.cc File cc/blink/web_layer_impl.cc (right): https://codereview.chromium.org/1602773006/diff/60001/cc/blink/web_layer_impl.cc#newcode356 cc/blink/web_layer_impl.cc:356: cc::MainThreadScrollingReason::kMaxNonTransientScrollingReason); Thanks, I'll fix this ...
4 years, 11 months ago (2016-01-20 15:07:07 UTC) #12
danakj
https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h File third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h (right): https://codereview.chromium.org/1602773006/diff/20001/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h#newcode165 third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h:165: uint32_t m_lastMainThreadScrollingReasons; On 2016/01/20 00:15:11, danakj wrote: > On ...
4 years, 11 months ago (2016-01-20 22:38:07 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1602773006/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1602773006/120001
4 years, 11 months ago (2016-01-22 00:26:14 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1602773006/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1602773006/120001
4 years, 11 months ago (2016-01-22 23:55:56 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, no build URL) linux_chromium_gn_chromeos_rel on ...
4 years, 11 months ago (2016-01-23 00:48:12 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1602773006/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1602773006/120001
4 years, 11 months ago (2016-01-23 00:50:56 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (JOB_FAILED, no build URL)
4 years, 11 months ago (2016-01-23 00:57:14 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1602773006/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1602773006/120001
4 years, 11 months ago (2016-01-23 01:27:12 UTC) #27
tandrii(chromium)
On 2016/01/23 00:57:14, commit-bot: I haz the power wrote: > Try jobs failed on following ...
4 years, 11 months ago (2016-01-23 01:49:24 UTC) #28
commit-bot: I haz the power
Committed patchset #6 (id:120001)
4 years, 11 months ago (2016-01-23 23:25:00 UTC) #29
commit-bot: I haz the power
4 years, 11 months ago (2016-01-23 23:27:10 UTC) #31
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/0536dbbcab956b879d2bee49f7e4629cf753a9fa
Cr-Commit-Position: refs/heads/master@{#371151}

Powered by Google App Engine
This is Rietveld 408576698