Revert "Only store leading 13 bits of password hash."
[chromium-blink-merge.git] / chrome / browser / ui / views / website_settings / permissions_bubble_view.h
blob886bb2077b1f8b1e8bc4aebcb70472a79eabac4d
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"
14 namespace views {
15 class View;
18 class PermissionsBubbleDelegateView;
20 class PermissionBubbleViewViews : public PermissionBubbleView {
21 public:
22 PermissionBubbleViewViews(views::View* anchor_view,
23 const std::string& languages);
24 ~PermissionBubbleViewViews() override;
26 // PermissionBubbleView:
27 void SetDelegate(Delegate* delegate) override;
28 void Show(const std::vector<PermissionBubbleRequest*>& requests,
29 const std::vector<bool>& accept_state,
30 bool customization_mode) override;
31 bool CanAcceptRequestUpdate() override;
32 void Hide() override;
33 bool IsVisible() override;
35 void Closing();
36 void Toggle(int index, bool value);
37 void Accept();
38 void Deny();
39 void SetCustomizationMode();
41 private:
42 views::View* anchor_view_;
43 Delegate* delegate_;
44 PermissionsBubbleDelegateView* bubble_delegate_;
45 const std::string languages_;
47 DISALLOW_COPY_AND_ASSIGN(PermissionBubbleViewViews);
50 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_