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_cocoa.h
blob3b2fff917b30ffb0343489de1291c83e945ed1b9
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 #ifndef CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_COCOA_H_
8 #import <Foundation/Foundation.h>
10 #include "base/gtest_prod_util.h"
11 #include "base/mac/scoped_nsobject.h"
12 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h"
14 #include "chrome/browser/ui/cocoa/info_bubble_view.h"
15 #include "chrome/browser/ui/website_settings/permission_bubble_view.h"
16 #include "content/public/browser/web_contents.h"
18 class Browser;
19 @class PermissionBubbleController;
21 class PermissionBubbleCocoa : public PermissionBubbleView {
22 public:
23 explicit PermissionBubbleCocoa(Browser* browser);
24 ~PermissionBubbleCocoa() override;
26 // PermissionBubbleView interface.
27 void Show(const std::vector<PermissionBubbleRequest*>& requests,
28 const std::vector<bool>& accept_state) override;
29 void Hide() override;
30 bool IsVisible() override;
31 void SetDelegate(Delegate* delegate) override;
32 bool CanAcceptRequestUpdate() override;
33 void UpdateAnchorPosition() override;
34 gfx::NativeWindow GetNativeWindow() override;
36 // Called when |bubbleController_| is closing.
37 void OnBubbleClosing();
39 private:
40 FRIEND_TEST_ALL_PREFIXES(PermissionBubbleBrowserTest,
41 HasLocationBarByDefault);
42 FRIEND_TEST_ALL_PREFIXES(PermissionBubbleBrowserTest,
43 FullscreenHasLocationBar);
44 FRIEND_TEST_ALL_PREFIXES(PermissionBubbleBrowserTest, AppHasNoLocationBar);
45 FRIEND_TEST_ALL_PREFIXES(PermissionBubbleKioskBrowserTest,
46 KioskHasNoLocationBar);
48 Browser* browser_; // Weak.
49 Delegate* delegate_; // Weak.
51 // Cocoa-side UI controller for the bubble. Weak, as it will close itself.
52 PermissionBubbleController* bubbleController_;
54 DISALLOW_COPY_AND_ASSIGN(PermissionBubbleCocoa);
57 #endif // CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_COCOA_H_