Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h" | 5 #include "chrome/browser/ui/cocoa/website_settings/permission_bubble_cocoa.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | 8 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
| 9 #import "chrome/browser/ui/cocoa/website_settings/permission_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" | 10 #import "chrome/browser/ui/website_settings/permission_prompt.h" |
| 11 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 12 #import "ui/base/cocoa/nsview_additions.h" | 12 #import "ui/base/cocoa/nsview_additions.h" |
| 13 | 13 |
| 14 PermissionBubbleCocoa::PermissionBubbleCocoa(Browser* browser) | 14 PermissionBubbleCocoa::PermissionBubbleCocoa(Browser* browser) |
| 15 : browser_(browser), delegate_(nullptr), bubbleController_(nil) { | 15 : browser_(browser), delegate_(nullptr), bubbleController_(nil) {} |
|
hcarmona
2016/10/10 18:08:19
Why is the DCHECK moved?
dominickn
2016/10/10 22:55:48
A number of browser and unit tests do navigations,
hcarmona
2016/10/11 14:45:33
Sounds good.
| |
| 16 DCHECK(browser); | |
| 17 } | |
| 18 | 16 |
| 19 PermissionBubbleCocoa::~PermissionBubbleCocoa() { | 17 PermissionBubbleCocoa::~PermissionBubbleCocoa() { |
| 20 } | 18 } |
| 21 | 19 |
| 22 void PermissionBubbleCocoa::Show( | 20 void PermissionBubbleCocoa::Show( |
| 23 const std::vector<PermissionRequest*>& requests, | 21 const std::vector<PermissionRequest*>& requests, |
| 24 const std::vector<bool>& accept_state) { | 22 const std::vector<bool>& accept_state) { |
| 23 DCHECK(browser_); | |
| 24 | |
| 25 if (!bubbleController_) { | 25 if (!bubbleController_) { |
| 26 bubbleController_ = | 26 bubbleController_ = |
| 27 [[PermissionBubbleController alloc] initWithBrowser:browser_ | 27 [[PermissionBubbleController alloc] initWithBrowser:browser_ |
| 28 bridge:this]; | 28 bridge:this]; |
| 29 } | 29 } |
| 30 | 30 |
| 31 [bubbleController_ showWithDelegate:delegate_ | 31 [bubbleController_ showWithDelegate:delegate_ |
| 32 forRequests:requests | 32 forRequests:requests |
| 33 acceptStates:accept_state]; | 33 acceptStates:accept_state]; |
| 34 } | 34 } |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 55 [bubbleController_ updateAnchorPosition]; | 55 [bubbleController_ updateAnchorPosition]; |
| 56 } | 56 } |
| 57 | 57 |
| 58 gfx::NativeWindow PermissionBubbleCocoa::GetNativeWindow() { | 58 gfx::NativeWindow PermissionBubbleCocoa::GetNativeWindow() { |
| 59 return [bubbleController_ window]; | 59 return [bubbleController_ window]; |
| 60 } | 60 } |
| 61 | 61 |
| 62 void PermissionBubbleCocoa::OnBubbleClosing() { | 62 void PermissionBubbleCocoa::OnBubbleClosing() { |
| 63 bubbleController_ = nil; | 63 bubbleController_ = nil; |
| 64 } | 64 } |
| OLD | NEW |