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

Unified Diff: ash/system/ime/tray_ime.cc

Issue 9753019: ash: Add a bluetooth entry in the uber tray. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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/bluetooth/tray_bluetooth.cc ('k') | ash/system/network/tray_network.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/ime/tray_ime.cc
diff --git a/ash/system/ime/tray_ime.cc b/ash/system/ime/tray_ime.cc
index 077976b8b038751b703190c00332ba34a6438a3b..65616762e39bfc1130f1107b56e23fec4f158dd1 100644
--- a/ash/system/ime/tray_ime.cc
+++ b/ash/system/ime/tray_ime.cc
@@ -23,8 +23,8 @@ TrayIME::~TrayIME() {
}
void TrayIME::UpdateTrayLabel() {
- IMEInfoList list = ash::Shell::GetInstance()->tray_delegate()->
- GetAvailableIMEList();
+ IMEInfoList list;
+ ash::Shell::GetInstance()->tray_delegate()->GetAvailableIMEList(&list);
for (size_t i = 0; i < list.size(); i++) {
if (list[i].selected) {
tray_label_->SetText(list[i].short_name);
« no previous file with comments | « ash/system/bluetooth/tray_bluetooth.cc ('k') | ash/system/network/tray_network.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698