Revert "Only store leading 13 bits of password hash."
[chromium-blink-merge.git] / chrome / browser / ui / views / managed_full_screen_bubble_delegate_view.cc
blob9a867d2ec4896b4bd403cc32edb1e3e1f57f202f
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.
5 #include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
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"
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(
25 this, chrome::NOTIFICATION_FULLSCREEN_CHANGED,
26 content::Source<FullscreenController>(
27 browser->exclusive_access_manager()->fullscreen_controller()));
31 ManagedFullScreenBubbleDelegateView::~ManagedFullScreenBubbleDelegateView() {
34 void ManagedFullScreenBubbleDelegateView::Observe(
35 int type,
36 const content::NotificationSource& source,
37 const content::NotificationDetails& details) {
38 DCHECK_EQ(chrome::NOTIFICATION_FULLSCREEN_CHANGED, type);
39 GetWidget()->SetVisibilityAnimationTransition(views::Widget::ANIMATE_NONE);
40 Close();
43 void ManagedFullScreenBubbleDelegateView::Close() {
44 GetWidget()->Close();
47 void ManagedFullScreenBubbleDelegateView::AdjustForFullscreen(
48 const gfx::Rect& screen_bounds) {
49 if (GetAnchorView())
50 return;
52 const int kBubblePaddingFromScreenEdge = 20;
53 int bubble_half_width = width() / 2;
54 const int x_pos = base::i18n::IsRTL() ?
55 (screen_bounds.x() + bubble_half_width + kBubblePaddingFromScreenEdge) :
56 (screen_bounds.right() - bubble_half_width -
57 kBubblePaddingFromScreenEdge);
58 SetAnchorRect(gfx::Rect(x_pos, screen_bounds.y(), 0, 0));