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

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

Issue 1478303003: Converted all Views to use an InkDropDelegate instead of a InkDropAnimationController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with master. Created 5 years 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.h
diff --git a/ui/views/animation/test/test_ink_drop_host.h b/ui/views/animation/test/test_ink_drop_host.h
index b952b77adb815240e34283de12182abb097571da..7b515cbe4f628f7eb49c70cf02d06d7625e2a57f 100644
--- a/ui/views/animation/test/test_ink_drop_host.h
+++ b/ui/views/animation/test/test_ink_drop_host.h
@@ -10,19 +10,25 @@
namespace views {
-// A non-functional, dummy implementation of an InkDropHost that can be used as
-// a placeholder during tests.
+// A non-functional implementation of an InkDropHost that can be used during
+// tests. Tracks the number of hosted ink drop layers.
class TestInkDropHost : public InkDropHost {
public:
TestInkDropHost();
~TestInkDropHost() override;
+ int num_ink_drop_layers() const {
+ return num_ink_drop_layers_;
+ }
+
// TestInkDropHost:
void AddInkDropLayer(ui::Layer* ink_drop_layer) override;
void RemoveInkDropLayer(ui::Layer* ink_drop_layer) override;
gfx::Point CalculateInkDropCenter() const override;
private:
+ int num_ink_drop_layers_;
+
DISALLOW_COPY_AND_ASSIGN(TestInkDropHost);
};

Powered by Google App Engine
This is Rietveld 408576698