hcarmona | aa431c0 | 2015-08-28 18:45:57 | [diff] [blame] | 1 | // 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 | |
| 7 | BubbleDelegate::BubbleDelegate() {} |
| 8 | |
| 9 | BubbleDelegate::~BubbleDelegate() {} |
| 10 | |
hcarmona | de57000 | 2015-09-30 01:33:36 | [diff] [blame] | 11 | bool BubbleDelegate::ShouldClose(BubbleCloseReason reason) const { |
hcarmona | aa431c0 | 2015-08-28 18:45:57 | [diff] [blame] | 12 | return true; |
| 13 | } |
hcarmona | 3e2a58c2 | 2015-09-08 23:46:15 | [diff] [blame] | 14 | |
hcarmona | 5d51107 | 2016-02-23 23:23:53 | [diff] [blame] | 15 | void BubbleDelegate::DidClose(BubbleCloseReason reason) {} |
hcarmona | de57000 | 2015-09-30 01:33:36 | [diff] [blame] | 16 | |
hcarmona | 3e2a58c2 | 2015-09-08 23:46:15 | [diff] [blame] | 17 | bool BubbleDelegate::UpdateBubbleUi(BubbleUi* bubble_ui) { |
| 18 | return false; |
| 19 | } |