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

Unified Diff: chrome/browser/views/first_run_customize_view.cc

Issue 2808006: Allow randomized search engines in selection dialog.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 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
Index: chrome/browser/views/first_run_customize_view.cc
===================================================================
--- chrome/browser/views/first_run_customize_view.cc (revision 49796)
+++ chrome/browser/views/first_run_customize_view.cc (working copy)
@@ -23,15 +23,17 @@
#include "views/window/window.h"
FirstRunCustomizeView::FirstRunCustomizeView(Profile* profile,
mattm 2010/06/16 00:20:26 I believe the first arg should also go on the next
Miranda Callahan 2010/06/16 15:30:00 Done.
- ImporterHost* importer_host,
- CustomizeViewObserver* observer,
- bool default_browser_checked,
- bool homepage_defined,
- int import_items,
- int dont_import_items,
- bool search_engine_experiment)
+ ImporterHost* importer_host,
+ CustomizeViewObserver* observer,
+ bool default_browser_checked,
+ bool homepage_defined,
+ int import_items,
+ int dont_import_items,
+ bool search_engine_experiment,
+ bool randomize_search_engine_experiment)
: FirstRunViewBase(profile, homepage_defined, import_items,
- dont_import_items, search_engine_experiment),
+ dont_import_items, search_engine_experiment,
+ randomize_search_engine_experiment),
main_label_(NULL),
import_cbox_(NULL),
import_from_combo_(NULL),

Powered by Google App Engine
This is Rietveld 408576698