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

Unified Diff: ui/views/animation/test/test_ink_drop_host.cc

Issue 1682893002: Color the ink drop ripple and hover effects based on theming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit tests Created 4 years, 10 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/test/test_ink_drop_host.cc
diff --git a/ui/views/animation/test/test_ink_drop_host.cc b/ui/views/animation/test/test_ink_drop_host.cc
index 3b4661699fdb34fe9152ee7f1b17c84b41f3d3ef..b13effc6493a4e9aeb0dd44de54b7d044291661e 100644
--- a/ui/views/animation/test/test_ink_drop_host.cc
+++ b/ui/views/animation/test/test_ink_drop_host.cc
@@ -4,6 +4,8 @@
#include "ui/views/animation/test/test_ink_drop_host.h"
+#include "ui/gfx/color_palette.h"
+
namespace views {
TestInkDropHost::TestInkDropHost()
@@ -27,4 +29,8 @@ bool TestInkDropHost::ShouldShowInkDropHover() const {
return should_show_hover_;
}
+SkColor TestInkDropHost::GetInkDropBaseColor() const {
+ return gfx::kPlaceholderColor;
+}
+
} // namespace views

Powered by Google App Engine
This is Rietveld 408576698