summaryrefslogtreecommitdiffstats
path: root/chrome/browser/platform_util_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/platform_util_win.cc')
-rw-r--r--chrome/browser/platform_util_win.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/platform_util_win.cc b/chrome/browser/platform_util_win.cc
index 5157cb4..1c69075 100644
--- a/chrome/browser/platform_util_win.cc
+++ b/chrome/browser/platform_util_win.cc
@@ -166,7 +166,7 @@ bool SimpleYesNoBox(gfx::NativeWindow parent,
MB_YESNO | MB_ICONWARNING | MB_SETFOREGROUND) == IDYES;
}
-string16 GetVersionStringModifier() {
+std::string GetVersionStringModifier() {
#if defined(GOOGLE_CHROME_BUILD)
FilePath module;
string16 channel;
@@ -176,9 +176,9 @@ string16 GetVersionStringModifier() {
GoogleUpdateSettings::GetChromeChannel(is_system_install, &channel);
}
- return channel;
+ return UTF16ToASCII(channel);
#else
- return string16();
+ return std::string();
#endif
}