Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / views / website_settings / permissions_bubble_view.h
bloba9d1836c07edb89ff161e81496c7522398ed61c9
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_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_
8 #include <string>
10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
12 #include "chrome/browser/ui/website_settings/permission_bubble_view.h"
13 #include "ui/views/bubble/bubble_border.h"
15 namespace views {
16 class View;
19 class Browser;
20 class PermissionsBubbleDelegateView;
22 class PermissionBubbleViewViews : public PermissionBubbleView {
23 public:
24 explicit PermissionBubbleViewViews(Browser* browser);
25 ~PermissionBubbleViewViews() override;
27 // PermissionBubbleView:
28 void SetDelegate(Delegate* delegate) override;
29 void Show(const std::vector<PermissionBubbleRequest*>& requests,
30 const std::vector<bool>& accept_state) override;
31 bool CanAcceptRequestUpdate() override;
32 void Hide() override;
33 bool IsVisible() override;
34 void UpdateAnchorPosition() override;
35 gfx::NativeWindow GetNativeWindow() override;
37 void Closing();
38 void Toggle(int index, bool value);
39 void Accept();
40 void Deny();
42 private:
43 views::View* GetAnchorView();
44 views::BubbleBorder::Arrow GetAnchorArrow();
46 Browser* browser_;
47 Delegate* delegate_;
48 PermissionsBubbleDelegateView* bubble_delegate_;
50 DISALLOW_COPY_AND_ASSIGN(PermissionBubbleViewViews);
53 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_