Popular sites on the NTP: check that experiment group StartsWith (rather than IS...
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / website_settings / permission_bubble_controller.h
blobbc62cbfcdc266ace04859dc090951f0b602c1af3
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 #import <Cocoa/Cocoa.h>
7 #include "base/mac/scoped_nsobject.h"
8 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
9 #include "chrome/browser/ui/website_settings/permission_bubble_view.h"
10 #include "ui/base/models/simple_menu_model.h"
12 @class MenuController;
13 class PermissionBubbleCocoa;
14 class PermissionBubbleRequest;
16 @interface PermissionBubbleController :
17 BaseBubbleController<NSTextViewDelegate> {
18 @private
19 // Array of views that are the checkboxes for every requested permission.
20 // Only populated if multiple requests are shown at once.
21 base::scoped_nsobject<NSMutableArray> checkboxes_;
23 // Delegate to be informed of user actions.
24 PermissionBubbleView::Delegate* delegate_; // Weak.
26 // Used to determine the correct anchor location and parent window.
27 Browser* browser_; // Weak.
29 // Delegate that receives menu events on behalf of this.
30 scoped_ptr<ui::SimpleMenuModel::Delegate> menuDelegate_;
32 // Bridge to the C++ class that created this object.
33 PermissionBubbleCocoa* bridge_; // Weak.
36 // Designated initializer. |browser| and |bridge| must both be non-nil.
37 - (id)initWithBrowser:(Browser*)browser bridge:(PermissionBubbleCocoa*)bridge;
39 // Makes the bubble visible. The bubble will be popuplated with text retrieved
40 // from |requests|. |delegate| will receive callbacks for user actions.
41 - (void)showWithDelegate:(PermissionBubbleView::Delegate*)delegate
42 forRequests:(const std::vector<PermissionBubbleRequest*>&)requests
43 acceptStates:(const std::vector<bool>&)acceptStates;
45 // Will reposition the bubble based in case the anchor or parent should change.
46 - (void)updateAnchorPosition;
48 // Will calculate the expected anchor point for this bubble.
49 // Should only be used outside this class for tests.
50 - (NSPoint)getExpectedAnchorPoint;
52 // Returns true of the browser has support for the location bar.
53 // Should only be used outside this class for tests.
54 - (bool)hasLocationBar;
56 @end