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

Unified Diff: ui/views/controls/button/custom_button_unittest.cc

Issue 1832963002: MD - add ripples to DL shelf items (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix another TODO Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/controls/button/custom_button.cc ('k') | ui/views/controls/button/menu_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/button/custom_button_unittest.cc
diff --git a/ui/views/controls/button/custom_button_unittest.cc b/ui/views/controls/button/custom_button_unittest.cc
index 0b07a34af26d4a2d066a89620a83cc10f9cb2f31..081ed54e22dbf7daffbe5811aefd167c60a12106 100644
--- a/ui/views/controls/button/custom_button_unittest.cc
+++ b/ui/views/controls/button/custom_button_unittest.cc
@@ -95,15 +95,15 @@ class TestInkDropDelegateThatTracksVisibilty : public InkDropDelegate {
void OnAction(InkDropState state) override {
switch (state) {
case InkDropState::ACTION_PENDING:
- case InkDropState::SLOW_ACTION_PENDING:
+ case InkDropState::ALTERNATE_ACTION_PENDING:
case InkDropState::ACTIVATED:
*ink_shown_ = true;
break;
case InkDropState::HIDDEN:
*ink_hidden_ = true;
break;
- case InkDropState::QUICK_ACTION:
- case InkDropState::SLOW_ACTION:
+ case InkDropState::ACTION_TRIGGERED:
+ case InkDropState::ALTERNATE_ACTION_TRIGGERED:
case InkDropState::DEACTIVATED:
break;
}
« no previous file with comments | « ui/views/controls/button/custom_button.cc ('k') | ui/views/controls/button/menu_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698