| Index: ui/views/animation/ink_drop_host_view.cc
|
| diff --git a/ui/views/animation/ink_drop_host_view.cc b/ui/views/animation/ink_drop_host_view.cc
|
| index 4f5f953b410751f9351b0b111a533df5b2099675..e1f48a875efe74b811d6126ab90f1bf63b6a55e5 100644
|
| --- a/ui/views/animation/ink_drop_host_view.cc
|
| +++ b/ui/views/animation/ink_drop_host_view.cc
|
| @@ -9,8 +9,8 @@
|
| #include "ui/gfx/color_palette.h"
|
| #include "ui/gfx/geometry/size_conversions.h"
|
| #include "ui/views/animation/ink_drop.h"
|
| -#include "ui/views/animation/ink_drop_factory.h"
|
| #include "ui/views/animation/ink_drop_highlight.h"
|
| +#include "ui/views/animation/ink_drop_impl.h"
|
| #include "ui/views/animation/ink_drop_stub.h"
|
| #include "ui/views/animation/square_ink_drop_ripple.h"
|
|
|
| @@ -192,7 +192,7 @@ bool InkDropHostView::ShouldShowInkDropForFocus() const {
|
|
|
| void InkDropHostView::SetHasInkDrop(bool has_an_ink_drop) {
|
| if (has_an_ink_drop) {
|
| - ink_drop_ = InkDropFactory::CreateInkDrop(this);
|
| + ink_drop_.reset(new InkDropImpl(this));
|
| gesture_handler_.reset(new InkDropGestureHandler(this, ink_drop_.get()));
|
| } else {
|
| gesture_handler_.reset();
|
|
|