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

Unified Diff: chrome/browser/views/first_run_customize_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/clear_browsing_data.cc ('k') | chrome/browser/views/first_run_customize_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/first_run_customize_view.h
===================================================================
--- chrome/browser/views/first_run_customize_view.h (revision 17310)
+++ chrome/browser/views/first_run_customize_view.h (working copy)
@@ -7,7 +7,7 @@
#include "chrome/browser/views/first_run_view_base.h"
#include "views/controls/button/button.h"
-#include "views/controls/combo_box.h"
+#include "views/controls/combobox/combobox.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
@@ -26,7 +26,7 @@
// some simple customizations during the first run.
class FirstRunCustomizeView : public FirstRunViewBase,
public views::ButtonListener,
- public views::ComboBox::Model {
+ public views::Combobox::Model {
public:
class CustomizeViewObserver {
public:
@@ -53,9 +53,9 @@
// Overridden form views::ButtonListener.
virtual void ButtonPressed(views::Button* sender);
- // Overridden form views::ComboBox::Model.
- virtual int GetItemCount(views::ComboBox* source);
- virtual std::wstring GetItemAt(views::ComboBox* source, int index);
+ // Overridden form views::Combobox::Model.
+ virtual int GetItemCount(views::Combobox* source);
+ virtual std::wstring GetItemAt(views::Combobox* source, int index);
// Overridden from views::WindowDelegate.
virtual std::wstring GetWindowTitle() const;
@@ -73,7 +73,7 @@
views::Label* main_label_;
views::Checkbox* import_cbox_;
- views::ComboBox* import_from_combo_;
+ views::Combobox* import_from_combo_;
views::Label* shortcuts_label_;
views::Checkbox* desktop_shortcut_cbox_;
views::Checkbox* quick_shortcut_cbox_;
« no previous file with comments | « chrome/browser/views/clear_browsing_data.cc ('k') | chrome/browser/views/first_run_customize_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698