Index: ui/views/animation/test/test_ink_drop_consumer.cc |
diff --git a/ui/views/animation/test/test_ink_drop_consumer.cc b/ui/views/animation/test/test_ink_drop_consumer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..02255514d681f3ee47366d8b076dc236a7fe16e8 |
--- /dev/null |
+++ b/ui/views/animation/test/test_ink_drop_consumer.cc |
@@ -0,0 +1,20 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/views/animation/test/test_ink_drop_consumer.h" |
+ |
+namespace views { |
+namespace test { |
+ |
+TestInkDropConsumer::TestInkDropConsumer() |
+ : should_show_ink_drop_hover_(false) {} |
+ |
+TestInkDropConsumer::~TestInkDropConsumer() {} |
+ |
+bool TestInkDropConsumer::ShouldShowInkDropHover() { |
+ return should_show_ink_drop_hover_; |
+} |
+ |
+} // namespace test |
+} // namespace views |