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

Side by Side Diff: chrome/installer/util/master_preferences_constants.cc

Issue 3117017: Remove deprecated wstring Get(As)String() methods from Value, etc. (Closed)
Patch Set: fix win Created 10 years, 4 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) 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 char kAltFirstRunBubble[] = "oem_bubble";
10 const wchar_t kAltShortcutText[] = L"alternate_shortcut_text"; 10 const char kAltShortcutText[] = "alternate_shortcut_text";
11 const wchar_t kChromeFrame[] = L"chrome_frame"; 11 const char kChromeFrame[] = "chrome_frame";
12 const wchar_t kChromeShortcutIconIndex[] = L"chrome_shortcut_icon_index"; 12 const char kChromeShortcutIconIndex[] = "chrome_shortcut_icon_index";
13 const wchar_t kCreateAllShortcuts[] = L"create_all_shortcuts"; 13 const char kCreateAllShortcuts[] = "create_all_shortcuts";
14 const wchar_t kDistroImportBookmarksPref[] = L"import_bookmarks"; 14 const char kDistroImportBookmarksPref[] = "import_bookmarks";
15 const wchar_t kDistroImportBookmarksFromFilePref[] = 15 const char kDistroImportBookmarksFromFilePref[] =
16 L"import_bookmarks_from_file"; 16 "import_bookmarks_from_file";
17 const wchar_t kDistroImportHistoryPref[] = L"import_history"; 17 const char kDistroImportHistoryPref[] = "import_history";
18 const wchar_t kDistroImportHomePagePref[] = L"import_home_page"; 18 const char kDistroImportHomePagePref[] = "import_home_page";
19 const wchar_t kDistroImportSearchPref[] = L"import_search_engine"; 19 const char kDistroImportSearchPref[] = "import_search_engine";
20 const wchar_t kDistroPingDelay[] = L"ping_delay"; 20 const char kDistroPingDelay[] = "ping_delay";
21 const wchar_t kDistroShowWelcomePage[] = L"show_welcome_page"; 21 const char kDistroShowWelcomePage[] = "show_welcome_page";
22 const wchar_t kDistroSkipFirstRunPref[] = L"skip_first_run_ui"; 22 const char kDistroSkipFirstRunPref[] = "skip_first_run_ui";
23 const wchar_t kDistroSuppressFirstRunBubble[] = L"suppress_first_run_bubble"; 23 const char kDistroSuppressFirstRunBubble[] = "suppress_first_run_bubble";
24 const wchar_t kDoNotCreateShortcuts[] = L"do_not_create_shortcuts"; 24 const char kDoNotCreateShortcuts[] = "do_not_create_shortcuts";
25 const wchar_t kDoNotLaunchChrome[] = L"do_not_launch_chrome"; 25 const char kDoNotLaunchChrome[] = "do_not_launch_chrome";
26 const wchar_t kDoNotRegisterForUpdateLaunch[] = 26 const char kDoNotRegisterForUpdateLaunch[] =
27 L"do_not_register_for_update_launch"; 27 "do_not_register_for_update_launch";
28 const wchar_t kMakeChromeDefault[] = L"make_chrome_default"; 28 const char kMakeChromeDefault[] = "make_chrome_default";
29 const wchar_t kMakeChromeDefaultForUser[] = L"make_chrome_default_for_user"; 29 const char kMakeChromeDefaultForUser[] = "make_chrome_default_for_user";
30 const wchar_t kMsi[] = L"msi"; 30 const char kMsi[] = "msi";
31 const wchar_t kRequireEula[] = L"require_eula"; 31 const char kRequireEula[] = "require_eula";
32 const wchar_t kSearchEngineExperimentPref[] = L"search_engine_experiment"; 32 const char kSearchEngineExperimentPref[] = "search_engine_experiment";
33 const wchar_t kSearchEngineExperimentRandomizePref[] = 33 const char kSearchEngineExperimentRandomizePref[] =
34 L"search_engine_experiment_randomize"; 34 "search_engine_experiment_randomize";
35 const wchar_t kSystemLevel[] = L"system_level"; 35 const char kSystemLevel[] = "system_level";
36 const wchar_t kVerboseLogging[] = L"verbose_logging"; 36 const char kVerboseLogging[] = "verbose_logging";
37 const wchar_t kExtensionsBlock[] = L"extensions.settings"; 37 const char kExtensionsBlock[] = "extensions.settings";
38 } 38 } // namespace master_preferences
39 } 39 } // namespace installer_util
OLDNEW
« no previous file with comments | « chrome/installer/util/master_preferences_constants.h ('k') | chrome/installer/util/master_preferences_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698