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

Unified Diff: ash/system/user/button_from_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/chromeos/tray_display_unittest.cc ('k') | ash/system/user/user_card_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/user/button_from_view.cc
diff --git a/ash/system/user/button_from_view.cc b/ash/system/user/button_from_view.cc
index c48401c91a735e2e8ec09d9185895c2bafbb86f3..b3c434d47f770be421c88be7d51bcaad44781e13 100644
--- a/ash/system/user/button_from_view.cc
+++ b/ash/system/user/button_from_view.cc
@@ -89,7 +89,7 @@ void ButtonFromView::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 ButtonFromView::ShowActive() {
« no previous file with comments | « ash/system/chromeos/tray_display_unittest.cc ('k') | ash/system/user/user_card_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698