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

Unified Diff: ui/views/animation/ink_drop.cc

Issue 2720183002: [Views] Update ink drop for omnibox icons (Closed)
Patch Set: Nits Created 3 years, 9 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.cc
diff --git a/ui/views/animation/ink_drop.cc b/ui/views/animation/ink_drop.cc
index 6a1df9896c7f074d76645933d291b1ae052497c6..f129efaf3f32f1a178565cad047d9dbb4800d484 100644
--- a/ui/views/animation/ink_drop.cc
+++ b/ui/views/animation/ink_drop.cc
@@ -6,6 +6,20 @@
namespace views {
+InkDrop::~InkDrop() {}
+
+void InkDrop::AddObserver(InkDropObserver* observer) {
+ CHECK(observer);
+ observers_.AddObserver(observer);
+}
+
+void InkDrop::RemoveObserver(InkDropObserver* observer) {
+ CHECK(observer);
+ observers_.RemoveObserver(observer);
+}
+
+InkDrop::InkDrop() {}
+
InkDropContainerView::InkDropContainerView() {}
void InkDropContainerView::AddInkDropLayer(ui::Layer* ink_drop_layer) {

Powered by Google App Engine
This is Rietveld 408576698