|
|
Created:
3 years, 7 months ago by sammiequon Modified:
3 years, 7 months ago CC:
chromium-reviews, tfarina, bruthig+ink_drop_chromium.org, dcheng Target Ref:
refs/heads/master Project:
chromium Visibility:
Public. |
Descriptionviews: Button ripple/highlight is visible during shelf swipe.
More details in the bug.
TEST=manual
BUG=714265
Review-Url: https://codereview.chromium.org/2840773003
Cr-Commit-Position: refs/heads/master@{#468501}
Committed: https://chromium.googlesource.com/chromium/src/+/8c6e6113a0f57941108e5267f699bd7dd740828b
Patch Set 1 #Patch Set 2 : Fix tests. #Patch Set 3 : Rebased. #
Total comments: 4
Patch Set 4 : Fix patch set 3 errors. #Messages
Total messages: 50 (38 generated)
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
Description was changed from ========== views: Button ripple/highlight is visible during shelf swipe. More details in the bug. TEST=manual BUG=714265 ========== to ========== views: Button ripple/highlight is visible during shelf swipe. More details in the bug. TEST=manual BUG=714265 ==========
sammiequon@chromium.org changed reviewers: + bruthig@chromium.org
bruthig@ - Please take a look. Thanks!
https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... File ui/views/animation/ink_drop_host_view.cc (right): https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... ui/views/animation/ink_drop_host_view.cc:78: case ui::ET_GESTURE_TAP_CANCEL: Do you know if a TAP_CANCEL happen whenever a SCROLL_BEGIN happens? https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... ui/views/animation/ink_drop_host_view.cc:88: (current_ink_drop_state == InkDropState::ACTION_TRIGGERED || Can you add a clause here so that we don't initiate a HIDDEN animation if the |current_ink_drop_state| is already HIDDEN? You will have to update some tests, including reverting the test changes you already made.
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
Patchset #5 (id:80001) has been deleted
Patchset #4 (id:60001) has been deleted
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...) linux_chromium_tsan_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_...)
The CQ bit was checked by sammiequon@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... File ui/views/animation/ink_drop_host_view.cc (right): https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... ui/views/animation/ink_drop_host_view.cc:78: case ui::ET_GESTURE_TAP_CANCEL: On 2017/04/27 13:58:46, bruthig wrote: > Do you know if a TAP_CANCEL happen whenever a SCROLL_BEGIN happens? Oops, I did not mean to remove the SCROLL_BEGIN here. https://codereview.chromium.org/2840773003/diff/40001/ui/views/animation/ink_... ui/views/animation/ink_drop_host_view.cc:88: (current_ink_drop_state == InkDropState::ACTION_TRIGGERED || On 2017/04/27 13:58:46, bruthig wrote: > Can you add a clause here so that we don't initiate a HIDDEN animation if the > |current_ink_drop_state| is already HIDDEN? You will have to update some tests, > including reverting the test changes you already made. Done.
lgtm
On 2017/05/01 15:43:49, bruthig wrote: > lgtm Thanks!
The CQ bit was checked by sammiequon@chromium.org
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presub...)
sammiequon@chromium.org changed reviewers: + msw@chromium.org
On 2017/05/01 17:10:03, commit-bot: I haz the power wrote: > Try jobs failed on following builders: > chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, > http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presub...) msw@ - Please take a look at ash/shelf/*. Thanks!
rubber stamp lgtm
On 2017/05/01 22:03:45, msw wrote: > rubber stamp lgtm Thanks!
The CQ bit was checked by sammiequon@chromium.org
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
CQ is committing da patch. Bot data: {"patchset_id": 100001, "attempt_start_ts": 1493683553025980, "parent_rev": "1b455e60d47dab9b1c50e6f68cef59c0751103e0", "commit_rev": "8c6e6113a0f57941108e5267f699bd7dd740828b"}
Message was sent while issue was closed.
Description was changed from ========== views: Button ripple/highlight is visible during shelf swipe. More details in the bug. TEST=manual BUG=714265 ========== to ========== views: Button ripple/highlight is visible during shelf swipe. More details in the bug. TEST=manual BUG=714265 Review-Url: https://codereview.chromium.org/2840773003 Cr-Commit-Position: refs/heads/master@{#468501} Committed: https://chromium.googlesource.com/chromium/src/+/8c6e6113a0f57941108e5267f699... ==========
Message was sent while issue was closed.
Committed patchset #4 (id:100001) as https://chromium.googlesource.com/chromium/src/+/8c6e6113a0f57941108e5267f699... |