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

Unified Diff: ui/views/animation/ink_drop_state.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/animation/ink_drop_state.h ('k') | ui/views/animation/square_ink_drop_animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/animation/ink_drop_state.cc
diff --git a/ui/views/animation/ink_drop_state.cc b/ui/views/animation/ink_drop_state.cc
index e8ea38064258cce604473a8f21c718890748b199..adbefae1a22e62ab54aa22546f0db7a93a0f3c40 100644
--- a/ui/views/animation/ink_drop_state.cc
+++ b/ui/views/animation/ink_drop_state.cc
@@ -16,12 +16,12 @@ std::string ToString(InkDropState state) {
return std::string("HIDDEN");
case InkDropState::ACTION_PENDING:
return std::string("ACTION_PENDING");
- case InkDropState::QUICK_ACTION:
- return std::string("QUICK_ACTION");
- case InkDropState::SLOW_ACTION_PENDING:
- return std::string("SLOW_ACTION_PENDING");
- case InkDropState::SLOW_ACTION:
- return std::string("SLOW_ACTION");
+ case InkDropState::ACTION_TRIGGERED:
+ return std::string("ACTION_TRIGGERED");
+ case InkDropState::ALTERNATE_ACTION_PENDING:
+ return std::string("ALTERNATE_ACTION_PENDING");
+ case InkDropState::ALTERNATE_ACTION_TRIGGERED:
+ return std::string("ALTERNATE_ACTION_TRIGGERED");
case InkDropState::ACTIVATED:
return std::string("ACTIVATED");
case InkDropState::DEACTIVATED:
« no previous file with comments | « ui/views/animation/ink_drop_state.h ('k') | ui/views/animation/square_ink_drop_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698