diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 10:21:10 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 10:21:10 +0000 |
commit | bee119bb4f8c817287d742b149a3c8394a80e9c7 (patch) | |
tree | 9146262538048f0d7660ac147ebadee3ca76fbb2 /chrome/browser/gtk/content_setting_bubble_gtk.h | |
parent | a68dcca410f7726c1e379037bd12c85dffb922bc (diff) | |
download | chromium_src-bee119bb4f8c817287d742b149a3c8394a80e9c7.zip chromium_src-bee119bb4f8c817287d742b149a3c8394a80e9c7.tar.gz chromium_src-bee119bb4f8c817287d742b149a3c8394a80e9c7.tar.bz2 |
Simplify content settings bubble model "radio groups" to a single radio group.
There's no longer a use case for multiple radio groups (was originally planned for Geolocation), simplify the model and its views.
BUG=39073
TEST=content_setting_bubble_model_unittest
Review URL: http://codereview.chromium.org/1575022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44070 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/content_setting_bubble_gtk.h')
-rw-r--r-- | chrome/browser/gtk/content_setting_bubble_gtk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/content_setting_bubble_gtk.h b/chrome/browser/gtk/content_setting_bubble_gtk.h index 813f170..a09acab 100644 --- a/chrome/browser/gtk/content_setting_bubble_gtk.h +++ b/chrome/browser/gtk/content_setting_bubble_gtk.h @@ -90,7 +90,7 @@ class ContentSettingBubbleGtk : public InfoBubbleGtkDelegate, PopupMap popup_icons_; typedef std::vector<GtkWidget*> RadioGroupGtk; - std::vector<RadioGroupGtk> radio_groups_gtk_; + RadioGroupGtk radio_group_gtk_; }; #endif // CHROME_BROWSER_GTK_CONTENT_SETTING_BUBBLE_GTK_H_ |