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

Unified Diff: chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc

Issue 1227413007: Move ReplaceStringPlaceholders to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@join
Patch Set: Created 5 years, 5 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/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
diff --git a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
index ba4e4ae376caf6952a8c1d91c1b57c620ce17185..c89d357627c9fc2067e0712cfe9d37ef413fdbb0 100644
--- a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
+++ b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
@@ -38,7 +38,8 @@ bool StringHasPlaceholders(const base::string16& input) {
std::vector<base::string16> subst;
subst.push_back(base::string16());
- base::string16 replaced = ReplaceStringPlaceholders(input, subst, &offsets);
+ base::string16 replaced =
+ base::ReplaceStringPlaceholders(input, subst, &offsets);
return !offsets.empty();
}

Powered by Google App Engine
This is Rietveld 408576698