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

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

Issue 3750001: base: Move SplitString functions into the base namespace and update the callers. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: brett review, reverted changes in o3d due to it's using an old base revision Created 10 years, 2 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
« no previous file with comments | « chrome/installer/util/compat_checks.cc ('k') | chrome/installer/util/version.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/shell_util.cc
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
index 8470a313800e590e40bf87f5d7d172f37e10f3e7..f8c3b271ccf81f89cd73bbf54ccbba6ec385a26c 100644
--- a/chrome/installer/util/shell_util.cc
+++ b/chrome/installer/util/shell_util.cc
@@ -365,8 +365,8 @@ bool AnotherUserHasDefaultBrowser(const std::wstring& chrome_exe) {
return false;
std::vector<std::wstring> v1, v2;
- SplitString(registry_chrome_exe, L'\\', &v1);
- SplitString(chrome_exe, L'\\', &v2);
+ base::SplitString(registry_chrome_exe, L'\\', &v1);
+ base::SplitString(chrome_exe, L'\\', &v2);
if (v1.size() == 0 || v2.size() == 0 || v1.size() != v2.size())
return false;
« no previous file with comments | « chrome/installer/util/compat_checks.cc ('k') | chrome/installer/util/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698