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

Unified Diff: chrome/browser/views/bug_report_view.h

Issue 113991: Make Combobox portable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/views/bookmark_bubble_view.cc ('k') | chrome/browser/views/bug_report_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/bug_report_view.h
===================================================================
--- chrome/browser/views/bug_report_view.h (revision 17310)
+++ chrome/browser/views/bug_report_view.h (working copy)
@@ -7,7 +7,7 @@
#include "chrome/browser/net/url_fetcher.h"
#include "googleurl/src/gurl.h"
-#include "views/controls/combo_box.h"
+#include "views/controls/combobox/combobox.h"
#include "views/controls/textfield/textfield.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
@@ -34,7 +34,7 @@
// So now use dialog as a placeholder.
class BugReportView : public views::View,
public views::DialogDelegate,
- public views::ComboBox::Listener,
+ public views::Combobox::Listener,
public views::Textfield::Controller {
public:
explicit BugReportView(Profile* profile, TabContents* tab);
@@ -54,8 +54,8 @@
virtual bool HandleKeystroke(views::Textfield* sender,
const views::Textfield::Keystroke& key);
- // views::ComboBox::Listener implementation:
- virtual void ItemChanged(views::ComboBox* combo_box, int prev_index,
+ // views::Combobox::Listener implementation:
+ virtual void ItemChanged(views::Combobox* combobox, int prev_index,
int new_index);
// Overridden from views::DialogDelegate:
@@ -88,7 +88,7 @@
void ReportPhishing();
views::Label* bug_type_label_;
- views::ComboBox* bug_type_combo_;
+ views::Combobox* bug_type_combo_;
views::Label* page_title_label_;
views::Label* page_title_text_;
views::Label* page_url_label_;
« no previous file with comments | « chrome/browser/views/bookmark_bubble_view.cc ('k') | chrome/browser/views/bug_report_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698