blob: 60809bf90930e0a5637a3a7a8118db3fb68f9fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// Copyright (c) 2010 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 "chrome/browser/views/frame/browser_bubble_host.h"
#include "base/logging.h"
#include "chrome/browser/views/browser_bubble.h"
void BrowserBubbleHost::WindowMoved() {
// Do safe iteration in case the bubble winds up closing as a result of this
// message.
for (BubbleSet::iterator i = browser_bubbles_.begin();
i != browser_bubbles_.end();) {
BubbleSet::iterator bubble = i++;
(*bubble)->BrowserWindowMoved();
}
}
void BrowserBubbleHost::AttachBrowserBubble(BrowserBubble* bubble) {
DCHECK(browser_bubbles_.find(bubble) == browser_bubbles_.end()) <<
"Attempt to register the same BrowserBubble multiple times.";
browser_bubbles_.insert(bubble);
}
void BrowserBubbleHost::DetachBrowserBubble(BrowserBubble* bubble) {
BubbleSet::iterator it = browser_bubbles_.find(bubble);
DCHECK(it != browser_bubbles_.end()) <<
"Attempt to detach an unrecognized BrowserBubble.";
if (it != browser_bubbles_.end())
browser_bubbles_.erase(it);
}
void BrowserBubbleHost::Close() {
// BrowserWindowClosing will usually cause the bubble to remove itself from
// the set, so we need to iterate in a way that's safe against deletion.
for (BubbleSet::iterator i = browser_bubbles_.begin();
i != browser_bubbles_.end();) {
BubbleSet::iterator bubble = i++;
(*bubble)->BrowserWindowClosing();
}
}
|