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

Side by Side Diff: chrome/installer/util/master_preferences_constants.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/installer/util/master_preferences_constants.h" 5 #include "chrome/installer/util/master_preferences_constants.h"
6 6
7 namespace installer_util { 7 namespace installer_util {
8 namespace master_preferences { 8 namespace master_preferences {
9 const wchar_t kAltFirstRunBubble[] = L"oem_bubble"; 9 const wchar_t kAltFirstRunBubble[] = L"oem_bubble";
10 const wchar_t kAltShortcutText[] = L"alternate_shortcut_text"; 10 const wchar_t kAltShortcutText[] = L"alternate_shortcut_text";
11 const wchar_t kChromeFrame[] = L"chrome_frame"; 11 const wchar_t kChromeFrame[] = L"chrome_frame";
12 const wchar_t kChromeShortcutIconIndex[] = L"chrome_shortcut_icon_index"; 12 const wchar_t kChromeShortcutIconIndex[] = L"chrome_shortcut_icon_index";
13 const wchar_t kCreateAllShortcuts[] = L"create_all_shortcuts"; 13 const wchar_t kCreateAllShortcuts[] = L"create_all_shortcuts";
14 const wchar_t kDistroImportBookmarksPref[] = L"import_bookmarks"; 14 const wchar_t kDistroImportBookmarksPref[] = L"import_bookmarks";
15 const wchar_t kDistroImportBookmarksFromFilePref[] = 15 const wchar_t kDistroImportBookmarksFromFilePref[] =
16 L"import_bookmarks_from_file"; 16 L"import_bookmarks_from_file";
17 const wchar_t kDistroImportHistoryPref[] = L"import_history"; 17 const wchar_t kDistroImportHistoryPref[] = L"import_history";
18 const wchar_t kDistroImportHomePagePref[] = L"import_home_page"; 18 const wchar_t kDistroImportHomePagePref[] = L"import_home_page";
19 const wchar_t kDistroImportSearchPref[] = L"import_search_engine"; 19 const wchar_t kDistroImportSearchPref[] = L"import_search_engine";
20 const wchar_t kDistroPingDelay[] = L"ping_delay"; 20 const wchar_t kDistroPingDelay[] = L"ping_delay";
21 const wchar_t kDistroShowWelcomePage[] = L"show_welcome_page"; 21 const wchar_t kDistroShowWelcomePage[] = L"show_welcome_page";
22 const wchar_t kDistroSkipFirstRunPref[] = L"skip_first_run_ui"; 22 const wchar_t kDistroSkipFirstRunPref[] = L"skip_first_run_ui";
23 const wchar_t kDoNotCreateShortcuts[] = L"do_not_create_shortcuts"; 23 const wchar_t kDoNotCreateShortcuts[] = L"do_not_create_shortcuts";
24 const wchar_t kDoNotLaunchChrome[] = L"do_not_launch_chrome"; 24 const wchar_t kDoNotLaunchChrome[] = L"do_not_launch_chrome";
25 const wchar_t kDoNotRegisterForUpdateLaunch[] = 25 const wchar_t kDoNotRegisterForUpdateLaunch[] =
26 L"do_not_register_for_update_launch"; 26 L"do_not_register_for_update_launch";
27 const wchar_t kMakeChromeDefault[] = L"make_chrome_default"; 27 const wchar_t kMakeChromeDefault[] = L"make_chrome_default";
28 const wchar_t kMakeChromeDefaultForUser[] = L"make_chrome_default_for_user"; 28 const wchar_t kMakeChromeDefaultForUser[] = L"make_chrome_default_for_user";
29 const wchar_t kMsi[] = L"msi"; 29 const wchar_t kMsi[] = L"msi";
30 const wchar_t kRequireEula[] = L"require_eula"; 30 const wchar_t kRequireEula[] = L"require_eula";
31 const wchar_t kSearchEngineExperimentPref[] = L"search_engine_experiment"; 31 const wchar_t kSearchEngineExperimentPref[] = L"search_engine_experiment";
32 const wchar_t kSearchEngineExperimentRandomizePref[] =
33 L"search_engine_experiment_randomize";
32 const wchar_t kSystemLevel[] = L"system_level"; 34 const wchar_t kSystemLevel[] = L"system_level";
33 const wchar_t kVerboseLogging[] = L"verbose_logging"; 35 const wchar_t kVerboseLogging[] = L"verbose_logging";
34 const wchar_t kExtensionsBlock[] = L"extensions.settings"; 36 const wchar_t kExtensionsBlock[] = L"extensions.settings";
35 } 37 }
36 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698