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

Side by Side Diff: chrome/browser/ui/views/content_setting_bubble_contents.h

Issue 23537029: Save password functionality added to the save password bubble (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review 1 Created 7 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CONTENT_SETTING_BUBBLE_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_
6 #define CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 content::WebContents* web_contents_; 103 content::WebContents* web_contents_;
104 104
105 // A registrar for listening for WEB_CONTENTS_DESTROYED notifications. 105 // A registrar for listening for WEB_CONTENTS_DESTROYED notifications.
106 content::NotificationRegistrar registrar_; 106 content::NotificationRegistrar registrar_;
107 107
108 // Some of our controls, so we can tell what's been clicked when we get a 108 // Some of our controls, so we can tell what's been clicked when we get a
109 // message. 109 // message.
110 PopupLinks popup_links_; 110 PopupLinks popup_links_;
111 typedef std::vector<views::RadioButton*> RadioGroup; 111 typedef std::vector<views::RadioButton*> RadioGroup;
112 RadioGroup radio_group_; 112 RadioGroup radio_group_;
113 views::LabelButton* cancel_button_;
114 views::LabelButton* save_button_;
113 views::Link* custom_link_; 115 views::Link* custom_link_;
114 views::Link* manage_link_; 116 views::Link* manage_link_;
115 views::LabelButton* close_button_; 117 views::LabelButton* close_button_;
116 views::LabelButton* never_button_;
117 views::LabelButton* save_button_;
118 scoped_ptr<views::MenuRunner> menu_runner_; 118 scoped_ptr<views::MenuRunner> menu_runner_;
119 MediaMenuPartsMap media_menus_; 119 MediaMenuPartsMap media_menus_;
120 120
121 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); 121 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents);
122 }; 122 };
123 123
124 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ 124 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698