Vectorize website settings icons in omnibox
[chromium-blink-merge.git] / components / bubble / bubble_controller.cc
blob877b3f8dfcf047b69aae4a53d3d4081cc0c5a8d6
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.
5 #include "components/bubble/bubble_controller.h"
7 #include "components/bubble/bubble_delegate.h"
8 #include "components/bubble/bubble_manager.h"
9 #include "components/bubble/bubble_ui.h"
11 BubbleController::BubbleController(BubbleManager* manager,
12 scoped_ptr<BubbleDelegate> delegate)
13 : manager_(manager), delegate_(delegate.Pass()) {
14 DCHECK(manager_);
15 DCHECK(delegate_);
18 BubbleController::~BubbleController() {
19 if (bubble_ui_)
20 ShouldClose(BUBBLE_CLOSE_FORCED);
23 bool BubbleController::CloseBubble(BubbleCloseReason reason) {
24 return manager_->CloseBubble(this->AsWeakPtr(), reason);
27 void BubbleController::Show() {
28 DCHECK(!bubble_ui_);
29 bubble_ui_ = delegate_->BuildBubbleUI();
30 DCHECK(bubble_ui_);
31 bubble_ui_->Show();
32 // TODO(hcarmona): log that bubble was shown.
35 void BubbleController::UpdateAnchorPosition() {
36 DCHECK(bubble_ui_);
37 bubble_ui_->UpdateAnchorPosition();
40 bool BubbleController::ShouldClose(BubbleCloseReason reason) {
41 DCHECK(bubble_ui_);
42 if (delegate_->ShouldClose(reason) || reason == BUBBLE_CLOSE_FORCED) {
43 bubble_ui_->Close();
44 bubble_ui_.reset();
45 // TODO(hcarmona): log that bubble was hidden.
46 return true;
48 return false;