| 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/cocoa/website_settings/permission_bubble_cocoa.h" | |
| 6 | |
| 7 #include "base/memory/ptr_util.h" | |
| 8 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | |
| 9 #import "chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h
" | |
| 10 #import "chrome/browser/ui/website_settings/permission_prompt.h" | |
| 11 #include "content/public/browser/web_contents.h" | |
| 12 #import "ui/base/cocoa/nsview_additions.h" | |
| 13 | |
| 14 PermissionBubbleCocoa::PermissionBubbleCocoa(Browser* browser) | |
| 15 : browser_(browser), delegate_(nullptr), bubbleController_(nil) {} | |
| 16 | |
| 17 PermissionBubbleCocoa::~PermissionBubbleCocoa() { | |
| 18 } | |
| 19 | |
| 20 void PermissionBubbleCocoa::Show( | |
| 21 const std::vector<PermissionRequest*>& requests, | |
| 22 const std::vector<bool>& accept_state) { | |
| 23 DCHECK(browser_); | |
| 24 | |
| 25 if (!bubbleController_) { | |
| 26 bubbleController_ = | |
| 27 [[PermissionBubbleController alloc] initWithBrowser:browser_ | |
| 28 bridge:this]; | |
| 29 } | |
| 30 | |
| 31 [bubbleController_ showWithDelegate:delegate_ | |
| 32 forRequests:requests | |
| 33 acceptStates:accept_state]; | |
| 34 } | |
| 35 | |
| 36 void PermissionBubbleCocoa::Hide() { | |
| 37 [bubbleController_ close]; | |
| 38 } | |
| 39 | |
| 40 bool PermissionBubbleCocoa::IsVisible() { | |
| 41 return bubbleController_ != nil; | |
| 42 } | |
| 43 | |
| 44 void PermissionBubbleCocoa::SetDelegate(Delegate* delegate) { | |
| 45 if (delegate_ == delegate) | |
| 46 return; | |
| 47 delegate_ = delegate; | |
| 48 } | |
| 49 | |
| 50 bool PermissionBubbleCocoa::CanAcceptRequestUpdate() { | |
| 51 return ![[[bubbleController_ window] contentView] cr_isMouseInView]; | |
| 52 } | |
| 53 | |
| 54 void PermissionBubbleCocoa::UpdateAnchorPosition() { | |
| 55 [bubbleController_ updateAnchorPosition]; | |
| 56 } | |
| 57 | |
| 58 gfx::NativeWindow PermissionBubbleCocoa::GetNativeWindow() { | |
| 59 return [bubbleController_ window]; | |
| 60 } | |
| 61 | |
| 62 void PermissionBubbleCocoa::OnBubbleClosing() { | |
| 63 bubbleController_ = nil; | |
| 64 } | |
| OLD | NEW |