Chromium Code Reviews| OLD | NEW |
|---|---|
| (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::AdjustForFullscreen( | |
| 43 const gfx::Rect& screen_bounds) { | |
| 44 if (GetAnchorView()) | |
| 45 return; | |
| 46 | |
| 47 // The bubble's padding from the screen edge, used in fullscreen. | |
|
Peter Kasting
2014/12/23 00:49:02
Nit: Instead of the somewhat-redundant comment, ho
Pritam Nikam
2014/12/23 06:22:29
Done.
| |
| 48 const int kFullscreenPaddingEnd = 20; | |
| 49 int bubble_half_width = width() / 2; | |
| 50 const int x_pos = base::i18n::IsRTL() ? | |
| 51 (screen_bounds.x() + bubble_half_width + kFullscreenPaddingEnd) : | |
| 52 (screen_bounds.right() - bubble_half_width - kFullscreenPaddingEnd); | |
| 53 SetAnchorRect(gfx::Rect(x_pos, screen_bounds.y(), 0, 0)); | |
| 54 } | |
| 55 | |
| 56 void ManagedFullScreenBubbleDelegateView::Close() { | |
| 57 GetWidget()->Close(); | |
| 58 } | |
| OLD | NEW |