OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/system/ime/tray_ime.h" | 5 #include "ash/system/ime/tray_ime.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
Jun Mukai
2012/04/17 03:55:05
oh, I introduced this by mistake but nobody seems
Yusuke Sato
2012/04/17 04:33:32
Done.
| |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
11 #include "ash/system/tray/system_tray.h" | 11 #include "ash/system/tray/system_tray.h" |
12 #include "ash/system/tray/system_tray_delegate.h" | 12 #include "ash/system/tray/system_tray_delegate.h" |
13 #include "ash/system/tray/tray_constants.h" | 13 #include "ash/system/tray/tray_constants.h" |
14 #include "ash/system/tray/tray_item_more.h" | 14 #include "ash/system/tray/tray_item_more.h" |
15 #include "ash/system/tray/tray_views.h" | 15 #include "ash/system/tray/tray_views.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
151 ime_find = ime_map_.find(sender); | 151 ime_find = ime_map_.find(sender); |
152 if (ime_find != ime_map_.end()) { | 152 if (ime_find != ime_map_.end()) { |
153 std::string ime_id = ime_find->second; | 153 std::string ime_id = ime_find->second; |
154 delegate->SwitchIME(ime_id); | 154 delegate->SwitchIME(ime_id); |
155 GetWidget()->Close(); | 155 GetWidget()->Close(); |
156 } else { | 156 } else { |
157 std::map<views::View*, IMEPropertyInfo>::const_iterator prop_find; | 157 std::map<views::View*, IMEPropertyInfo>::const_iterator prop_find; |
158 prop_find = property_map_.find(sender); | 158 prop_find = property_map_.find(sender); |
159 if (prop_find != property_map_.end()) { | 159 if (prop_find != property_map_.end()) { |
160 const IMEPropertyInfo& prop = prop_find->second; | 160 const IMEPropertyInfo& prop = prop_find->second; |
161 delegate->ActivateIMEProperty(prop.key, prop.is_selection); | 161 delegate->ActivateIMEProperty(prop.key); |
162 GetWidget()->Close(); | 162 GetWidget()->Close(); |
163 } | 163 } |
164 } | 164 } |
165 } | 165 } |
166 } | 166 } |
167 | 167 |
168 user::LoginStatus login_; | 168 user::LoginStatus login_; |
169 | 169 |
170 std::map<views::View*, std::string> ime_map_; | 170 std::map<views::View*, std::string> ime_map_; |
171 std::map<views::View*, IMEPropertyInfo> property_map_; | 171 std::map<views::View*, IMEPropertyInfo> property_map_; |
Jun Mukai
2012/04/17 03:55:05
Then you can switch here back to std::string (just
Yusuke Sato
2012/04/17 04:33:32
Done.
| |
172 views::View* header_; | 172 views::View* header_; |
173 views::View* settings_; | 173 views::View* settings_; |
174 | 174 |
175 DISALLOW_COPY_AND_ASSIGN(IMEDetailedView); | 175 DISALLOW_COPY_AND_ASSIGN(IMEDetailedView); |
176 }; | 176 }; |
177 | 177 |
178 } // namespace tray | 178 } // namespace tray |
179 | 179 |
180 TrayIME::TrayIME() { | 180 TrayIME::TrayIME() { |
181 } | 181 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
230 UpdateTrayLabel(current, list.size()); | 230 UpdateTrayLabel(current, list.size()); |
231 | 231 |
232 if (default_.get()) | 232 if (default_.get()) |
233 default_->UpdateLabel(current); | 233 default_->UpdateLabel(current); |
234 if (detailed_.get()) | 234 if (detailed_.get()) |
235 detailed_->Update(list, property_list); | 235 detailed_->Update(list, property_list); |
236 } | 236 } |
237 | 237 |
238 } // namespace internal | 238 } // namespace internal |
239 } // namespace ash | 239 } // namespace ash |
OLD | NEW |