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

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

Issue 2725783004: views: align columns in site settings dialog (Closed)
Patch Set: fix nits 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/observer_list.h" 12 #include "base/observer_list.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h" 14 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h"
15 #include "chrome/browser/ui/website_settings/permission_menu_model.h" 15 #include "chrome/browser/ui/website_settings/permission_menu_model.h"
16 #include "chrome/browser/ui/website_settings/website_settings_ui.h" 16 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
17 #include "components/content_settings/core/common/content_settings.h" 17 #include "components/content_settings/core/common/content_settings.h"
18 #include "components/content_settings/core/common/content_settings_types.h" 18 #include "components/content_settings/core/common/content_settings_types.h"
19 #include "ui/views/controls/button/menu_button_listener.h" 19 #include "ui/views/controls/button/menu_button_listener.h"
20 #include "ui/views/view.h" 20 #include "ui/views/view.h"
sky 2017/03/07 22:03:40 Forward declare this?
Elly Fong-Jones 2017/03/08 18:41:09 Done.
21 21
22 class Profile; 22 class Profile;
23 23
24 namespace internal { 24 namespace internal {
25 class ComboboxModelAdapter; 25 class ComboboxModelAdapter;
26 class PermissionCombobox; 26 class PermissionCombobox;
27 class PermissionMenuButton; 27 class PermissionMenuButton;
28 } 28 }
29 29
30 namespace test {
31 class WebsiteSettingsPopupViewTestApi;
32 }
33
30 namespace views { 34 namespace views {
31 class GridLayout; 35 class GridLayout;
32 class ImageView; 36 class ImageView;
37 class Label;
33 } 38 }
34 39
35 // A PermissionSelectorRow is a row in the Page Info bubble that shows a 40 // 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 41 // permission that a site can have ambient access to, and allows the user to
37 // control whether that access is granted. 42 // control whether that access is granted. A |PermissionSelectorRow| is not
38 class PermissionSelectorRow : public views::View { 43 // itself a |View|, but creates some |View|s, which end up owned by the |View|
44 // hierarchy.
45 class PermissionSelectorRow {
39 public: 46 public:
47 // The |PermissionSelectorRow|'s constituent views are added to |layout|.
40 PermissionSelectorRow(Profile* profile, 48 PermissionSelectorRow(Profile* profile,
41 const GURL& url, 49 const GURL& url,
42 const WebsiteSettingsUI::PermissionInfo& permission); 50 const WebsiteSettingsUI::PermissionInfo& permission,
51 views::GridLayout* layout);
52 virtual ~PermissionSelectorRow();
43 53
44 void AddObserver(PermissionSelectorRowObserver* observer); 54 void AddObserver(PermissionSelectorRowObserver* observer);
45 55
46 void PermissionChanged(const WebsiteSettingsUI::PermissionInfo& permission); 56 void PermissionChanged(const WebsiteSettingsUI::PermissionInfo& permission);
47 57
48 protected:
49 // Overridden from views::View.
50 void ChildPreferredSizeChanged(View* child) override;
51
52 private: 58 private:
53 ~PermissionSelectorRow() override; 59 friend class test::WebsiteSettingsPopupViewTestApi;
54 60
55 void InitializeMenuButtonView( 61 void InitializeMenuButtonView(
56 views::GridLayout* layout, 62 views::GridLayout* layout,
57 const WebsiteSettingsUI::PermissionInfo& permission); 63 const WebsiteSettingsUI::PermissionInfo& permission);
58 void InitializeComboboxView( 64 void InitializeComboboxView(
59 views::GridLayout* layout, 65 views::GridLayout* layout,
60 const WebsiteSettingsUI::PermissionInfo& permission); 66 const WebsiteSettingsUI::PermissionInfo& permission);
61 67
68 // Returns the "button" for this row, which is the control used to change the
69 // permission's value. This is either a |MenuButton| or a |Combobox|.
70 views::View* button();
71
62 Profile* profile_; 72 Profile* profile_;
63 73
64 // Model for the permission's menu. 74 // Model for the permission's menu.
65 std::unique_ptr<PermissionMenuModel> menu_model_; 75 std::unique_ptr<PermissionMenuModel> menu_model_;
66 std::unique_ptr<internal::ComboboxModelAdapter> combobox_model_adapter_; 76 std::unique_ptr<internal::ComboboxModelAdapter> combobox_model_adapter_;
67 77
68 views::ImageView* icon_; // Owned by the views hierachy. 78 // These are all owned by the views hierarchy:
69 internal::PermissionMenuButton* menu_button_; // Owned by the views hierachy. 79 views::ImageView* icon_;
70 internal::PermissionCombobox* combobox_; // Owned by the views hierarchy. 80 views::Label* label_;
81 internal::PermissionMenuButton* menu_button_;
82 internal::PermissionCombobox* combobox_;
71 83
72 base::ObserverList<PermissionSelectorRowObserver, false> observer_list_; 84 base::ObserverList<PermissionSelectorRowObserver, false> observer_list_;
73 85
74 DISALLOW_COPY_AND_ASSIGN(PermissionSelectorRow); 86 DISALLOW_COPY_AND_ASSIGN(PermissionSelectorRow);
75 }; 87 };
76 88
77 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_ 89 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698