Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Side by Side Diff: chrome/browser/ui/views/website_settings/permission_selector_row.h

Issue 2748443005: Rename website_settings UI folders to permission_bubble. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
7
8 #include <memory>
9
10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
12 #include "base/observer_list.h"
13 #include "base/strings/string16.h"
14 #include "chrome/browser/ui/page_info/website_settings_ui.h"
15 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h"
16 #include "chrome/browser/ui/website_settings/permission_menu_model.h"
17 #include "components/content_settings/core/common/content_settings.h"
18 #include "components/content_settings/core/common/content_settings_types.h"
19 #include "ui/views/controls/button/menu_button_listener.h"
20 #include "ui/views/view.h"
21
22 class Profile;
23
24 namespace internal {
25 class ComboboxModelAdapter;
26 class PermissionCombobox;
27 class PermissionMenuButton;
28 }
29
30 namespace views {
31 class GridLayout;
32 class ImageView;
33 }
34
35 // A PermissionSelectorRow is a row in the Page Info bubble that shows a
36 // permission that a site can have ambient access to, and allows the user to
37 // control whether that access is granted.
38 class PermissionSelectorRow : public views::View {
39 public:
40 PermissionSelectorRow(Profile* profile,
41 const GURL& url,
42 const WebsiteSettingsUI::PermissionInfo& permission);
43
44 void AddObserver(PermissionSelectorRowObserver* observer);
45
46 void PermissionChanged(const WebsiteSettingsUI::PermissionInfo& permission);
47
48 protected:
49 // Overridden from views::View.
50 void ChildPreferredSizeChanged(View* child) override;
51
52 private:
53 ~PermissionSelectorRow() override;
54
55 void InitializeMenuButtonView(
56 views::GridLayout* layout,
57 const WebsiteSettingsUI::PermissionInfo& permission);
58 void InitializeComboboxView(
59 views::GridLayout* layout,
60 const WebsiteSettingsUI::PermissionInfo& permission);
61
62 Profile* profile_;
63
64 // Model for the permission's menu.
65 std::unique_ptr<PermissionMenuModel> menu_model_;
66 std::unique_ptr<internal::ComboboxModelAdapter> combobox_model_adapter_;
67
68 views::ImageView* icon_; // Owned by the views hierachy.
69 internal::PermissionMenuButton* menu_button_; // Owned by the views hierachy.
70 internal::PermissionCombobox* combobox_; // Owned by the views hierarchy.
71
72 base::ObserverList<PermissionSelectorRowObserver, false> observer_list_;
73
74 DISALLOW_COPY_AND_ASSIGN(PermissionSelectorRow);
75 };
76
77 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698