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

Unified Diff: chrome/installer/util/google_chrome_binaries_distribution.cc

Issue 94013004: Add base:: to string16s in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try again Created 7 years 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/installer/util/google_chrome_binaries_distribution.cc
diff --git a/chrome/installer/util/google_chrome_binaries_distribution.cc b/chrome/installer/util/google_chrome_binaries_distribution.cc
index e5ad75121bb0b69332f6812866d2897a0bf8e6bb..80cc97f075b02afd44b10af984fa8886990b6ddf 100644
--- a/chrome/installer/util/google_chrome_binaries_distribution.cc
+++ b/chrome/installer/util/google_chrome_binaries_distribution.cc
@@ -21,34 +21,34 @@ GoogleChromeBinariesDistribution::GoogleChromeBinariesDistribution()
: ChromiumBinariesDistribution() {
}
-string16 GoogleChromeBinariesDistribution::GetAppGuid() {
+base::string16 GoogleChromeBinariesDistribution::GetAppGuid() {
return kChromeBinariesGuid;
}
-string16 GoogleChromeBinariesDistribution::GetDisplayName() {
+base::string16 GoogleChromeBinariesDistribution::GetDisplayName() {
return kChromeBinariesName;
}
-string16 GoogleChromeBinariesDistribution::GetShortcutName(
+base::string16 GoogleChromeBinariesDistribution::GetShortcutName(
ShortcutType shortcut_type) {
NOTREACHED();
- return string16();
+ return base::string16();
}
-string16 GoogleChromeBinariesDistribution::GetStateKey() {
- return string16(google_update::kRegPathClientState)
+base::string16 GoogleChromeBinariesDistribution::GetStateKey() {
+ return base::string16(google_update::kRegPathClientState)
.append(1, L'\\')
.append(kChromeBinariesGuid);
}
-string16 GoogleChromeBinariesDistribution::GetStateMediumKey() {
- return string16(google_update::kRegPathClientStateMedium)
+base::string16 GoogleChromeBinariesDistribution::GetStateMediumKey() {
+ return base::string16(google_update::kRegPathClientStateMedium)
.append(1, L'\\')
.append(kChromeBinariesGuid);
}
-string16 GoogleChromeBinariesDistribution::GetVersionKey() {
- return string16(google_update::kRegPathClients)
+base::string16 GoogleChromeBinariesDistribution::GetVersionKey() {
+ return base::string16(google_update::kRegPathClients)
.append(1, L'\\')
.append(kChromeBinariesGuid);
}
« no previous file with comments | « chrome/installer/util/google_chrome_binaries_distribution.h ('k') | chrome/installer/util/google_chrome_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698