blob: 3e5ff58fd51a09cf0346cdd2b3ba1b52eaf472ef [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
hcarmonade570002015-09-30 01:33:3615void BubbleDelegate::DidClose() {}
16
hcarmona3e2a58c22015-09-08 23:46:1517bool BubbleDelegate::UpdateBubbleUi(BubbleUi* bubble_ui) {
18 return false;
19}