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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows 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/ui/autofill/autofill_dialog_types.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.cc b/chrome/browser/ui/autofill/autofill_dialog_types.cc
index 95dfd44941596740999e48eea1a1dc29cba0ec08..b990097bfb0258218b1f9d9945265a39bb35817e 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.cc
@@ -34,7 +34,7 @@ DialogNotification::DialogNotification(Type type,
size_t start = pieces[0].size();
size_t end = start + pieces[1].size();
link_range_ = gfx::Range(start, end);
- display_text_ = JoinString(pieces, base::string16());
+ display_text_ = base::JoinString(pieces, base::StringPiece16());
}
}

Powered by Google App Engine
This is Rietveld 408576698