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

Unified Diff: chrome/tools/disable_outdated_build_detector/constants.cc

Issue 2255783003: Make the outdated build detector disabler load and run on XP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: suppress wstring warnings Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/tools/disable_outdated_build_detector/constants.cc
diff --git a/chrome/tools/disable_outdated_build_detector/constants.cc b/chrome/tools/disable_outdated_build_detector/constants.cc
index 53d45beaba608988f3de324a650940d1fe0f5f01..5bb3b905c28bc84f3703ba8ba2c5bc41a60ee0ea 100644
--- a/chrome/tools/disable_outdated_build_detector/constants.cc
+++ b/chrome/tools/disable_outdated_build_detector/constants.cc
@@ -6,8 +6,8 @@
namespace switches {
-const char kMultiInstall[] = "multi-install";
-const char kSystemLevel[] = "system-level";
+const wchar_t kMultiInstall[] = L"multi-install";
+const wchar_t kSystemLevel[] = L"system-level";
} // namespace switches
@@ -16,7 +16,7 @@ namespace env {
// The presence of this environment variable with a value of 1 implies that the
// tool should run as a system installation regardless of what is on the command
// line.
-const char kGoogleUpdateIsMachine[] = "GoogleUpdateIsMachine";
+const wchar_t kGoogleUpdateIsMachine[] = L"GoogleUpdateIsMachine";
} // namespace env

Powered by Google App Engine
This is Rietveld 408576698