| Index: ui/views/animation/ink_drop_stub.cc
|
| diff --git a/ui/views/animation/ink_drop_stub.cc b/ui/views/animation/ink_drop_stub.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..300c72a2cc61ab135d5038fa66af2dcd1cc6c4cd
|
| --- /dev/null
|
| +++ b/ui/views/animation/ink_drop_stub.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2016 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/ink_drop_stub.h"
|
| +
|
| +namespace views {
|
| +
|
| +InkDropStub::InkDropStub() {}
|
| +
|
| +InkDropStub::~InkDropStub() {}
|
| +
|
| +InkDropState InkDropStub::GetTargetInkDropState() const {
|
| + return InkDropState::HIDDEN;
|
| +}
|
| +
|
| +void InkDropStub::AnimateToState(InkDropState state) {}
|
| +
|
| +void InkDropStub::SnapToActivated() {}
|
| +
|
| +void InkDropStub::SetHovered(bool is_hovered) {}
|
| +
|
| +void InkDropStub::SetFocused(bool is_hovered) {}
|
| +
|
| +} // namespace views
|
|
|