blob: 6c669961b13fd0b9e4b4331edcd28fad95ecd055 [file] [log] [blame]
hcarmonaaa431c02015-08-28 18:45:571// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "components/bubble/bubble_delegate.h"
6
7BubbleDelegate::BubbleDelegate() {}
8
9BubbleDelegate::~BubbleDelegate() {}
10
hcarmonade570002015-09-30 01:33:3611bool BubbleDelegate::ShouldClose(BubbleCloseReason reason) const {
hcarmonaaa431c02015-08-28 18:45:5712 return true;
13}
hcarmona3e2a58c22015-09-08 23:46:1514
hcarmona5d511072016-02-23 23:23:5315void BubbleDelegate::DidClose(BubbleCloseReason reason) {}
hcarmonade570002015-09-30 01:33:3616
hcarmona3e2a58c22015-09-08 23:46:1517bool BubbleDelegate::UpdateBubbleUi(BubbleUi* bubble_ui) {
18 return false;
19}