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

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: updates after bruthig chat Created 4 years, 9 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
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:

Powered by Google App Engine
This is Rietveld 408576698