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

Unified Diff: ash/system/user/user_card_view.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
« no previous file with comments | « ash/system/user/button_from_view.cc ('k') | base/debug/crash_logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/user/user_card_view.cc
diff --git a/ash/system/user/user_card_view.cc b/ash/system/user/user_card_view.cc
index 3844251e04c03f6aca8cffc5a190d31f2259a92d..5201688ee592cba234624a9848adffbaa46e1137 100644
--- a/ash/system/user/user_card_view.cc
+++ b/ash/system/user/user_card_view.cc
@@ -355,7 +355,7 @@ void UserCardView::GetAccessibleState(ui::AXViewState* state) {
std::vector<base::string16> labels;
for (int i = 0; i < child_count(); ++i)
GetAccessibleLabelFromDescendantViews(child_at(i), labels);
- state->name = JoinString(labels, base::ASCIIToUTF16(" "));
+ state->name = base::JoinString(labels, base::ASCIIToUTF16(" "));
}
void UserCardView::AddPublicModeUserContent(int max_width) {
« no previous file with comments | « ash/system/user/button_from_view.cc ('k') | base/debug/crash_logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698