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

Unified Diff: ui/views/animation/ink_drop_state.h

Issue 1373983002: Enhanced the InkDropRippleImpl to create/destroy InkDropAnimations as needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Based diff delta on dependant branch. Created 5 years, 2 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.h
diff --git a/ui/views/animation/ink_drop_state.h b/ui/views/animation/ink_drop_state.h
index 2e8cd8676b09d7761bfa7160cda771b00058a6c9..1526a43a9a0c51580156f48f68b80af9a1143c38 100644
--- a/ui/views/animation/ink_drop_state.h
+++ b/ui/views/animation/ink_drop_state.h
@@ -5,6 +5,10 @@
#ifndef UI_VIEWS_ANIMATION_INK_DROP_STATE_H_
#define UI_VIEWS_ANIMATION_INK_DROP_STATE_H_
+#include <iosfwd>
+
+#include "ui/views/views_export.h"
+
namespace views {
// The different states that the ink drop animation can be animated to.
@@ -31,6 +35,8 @@ enum class InkDropState {
DEACTIVATED,
};
+VIEWS_EXPORT std::ostream& operator<<(std::ostream& out, InkDropState state);
+
sadrul 2015/10/08 01:06:01 Same here: is this necessary/useful? We have gener
bruthig 2015/10/08 21:42:55 Replaced with ToString().
} // namespace views
#endif // UI_VIEWS_ANIMATION_INK_DROP_STATE_H_

Powered by Google App Engine
This is Rietveld 408576698