Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.cc

Issue 795053003: [Password Manager] Close the bubble when fullscreen state gets change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Peter's review comments. Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
6
7 #include "chrome/browser/chrome_notification_types.h"
8 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/browser_finder.h"
10 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
11 #include "content/public/browser/notification_source.h"
12 #include "ui/gfx/geometry/rect.h"
13
14 ManagedFullScreenBubbleDelegateView::ManagedFullScreenBubbleDelegateView(
15 views::View* anchor_view,
16 content::WebContents* web_contents)
17 : BubbleDelegateView(
18 anchor_view,
19 anchor_view ?
20 views::BubbleBorder::TOP_RIGHT : views::BubbleBorder::NONE) {
21 // Add observer to close the bubble if the fullscreen state changes.
22 if (web_contents) {
23 Browser* browser = chrome::FindBrowserWithWebContents(web_contents);
24 registrar_.Add(this, chrome::NOTIFICATION_FULLSCREEN_CHANGED,
25 content::Source<FullscreenController>(
26 browser->fullscreen_controller()));
27 }
28 }
29
30 ManagedFullScreenBubbleDelegateView::~ManagedFullScreenBubbleDelegateView() {
31 }
32
33 void ManagedFullScreenBubbleDelegateView::Observe(
34 int type,
35 const content::NotificationSource& source,
36 const content::NotificationDetails& details) {
37 DCHECK_EQ(chrome::NOTIFICATION_FULLSCREEN_CHANGED, type);
38 GetWidget()->SetVisibilityAnimationTransition(views::Widget::ANIMATE_NONE);
39 Close();
40 }
41
42 void ManagedFullScreenBubbleDelegateView::Close() {
43 GetWidget()->Close();
44 }
45
46 void ManagedFullScreenBubbleDelegateView::AdjustForFullscreen(
47 const gfx::Rect& screen_bounds) {
48 if (GetAnchorView())
49 return;
50
51 const int kBubblePaddingFromScreenEdge = 20;
52 int bubble_half_width = width() / 2;
53 const int x_pos = base::i18n::IsRTL() ?
54 (screen_bounds.x() + bubble_half_width + kBubblePaddingFromScreenEdge) :
55 (screen_bounds.right() - bubble_half_width -
56 kBubblePaddingFromScreenEdge);
57 SetAnchorRect(gfx::Rect(x_pos, screen_bounds.y(), 0, 0));
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698