| Index: components/bubble/bubble_delegate.cc
|
| diff --git a/ui/base/touch/touch_device_ios.cc b/components/bubble/bubble_delegate.cc
|
| similarity index 50%
|
| copy from ui/base/touch/touch_device_ios.cc
|
| copy to components/bubble/bubble_delegate.cc
|
| index 9f4c712e42b7e71cd2b24e1a51e9cd5447b0e2c8..110d93f281cf506a2cb1aba0c8e20bc269fe0492 100644
|
| --- a/ui/base/touch/touch_device_ios.cc
|
| +++ b/components/bubble/bubble_delegate.cc
|
| @@ -2,12 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ui/base/touch/touch_device.h"
|
| +#include "components/bubble/bubble_delegate.h"
|
|
|
| -namespace ui {
|
| +BubbleDelegate::BubbleDelegate() {}
|
|
|
| -bool IsTouchDevicePresent() {
|
| +BubbleDelegate::~BubbleDelegate() {}
|
| +
|
| +bool BubbleDelegate::ShouldClose(BubbleCloseReason reason) {
|
| return true;
|
| }
|
| -
|
| -} // namespace ui
|
|
|