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

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

Issue 1949143003: Added pretty printers for some Ink Drop enums. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed primitive pass by refs. Created 4 years, 7 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_animation_ended_reason.h ('k') | ui/views/animation/ink_drop_hover.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/animation/ink_drop_hover.h
diff --git a/ui/views/animation/ink_drop_hover.h b/ui/views/animation/ink_drop_hover.h
index b2dc69c95e6136e279d6090458b493f9ebcbfac0..4c18b1d1889970d3a84b009c3bffb4ac6c2da5cd 100644
--- a/ui/views/animation/ink_drop_hover.h
+++ b/ui/views/animation/ink_drop_hover.h
@@ -5,6 +5,7 @@
#ifndef UI_VIEWS_ANIMATION_INK_DROP_HOVER_H_
#define UI_VIEWS_ANIMATION_INK_DROP_HOVER_H_
+#include <iosfwd>
#include <memory>
#include "base/macros.h"
@@ -113,6 +114,14 @@ class VIEWS_EXPORT InkDropHover {
DISALLOW_COPY_AND_ASSIGN(InkDropHover);
};
+// Returns a human readable string for |animation_type|. Useful for logging.
+VIEWS_EXPORT std::string ToString(InkDropHover::AnimationType animation_type);
+
+// This is declared here for use in gtest-based unit tests but is defined in
+// the views_test_support target. Depend on that to use this in your unit test.
+// This should not be used in production code - call ToString() instead.
+void PrintTo(InkDropHover::AnimationType animation_type, ::std::ostream* os);
+
} // namespace views
#endif // UI_VIEWS_ANIMATION_INK_DROP_HOVER_H_
« no previous file with comments | « ui/views/animation/ink_drop_animation_ended_reason.h ('k') | ui/views/animation/ink_drop_hover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698