OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/tray/default_system_tray_delegate.h" | 5 #include "ash/system/tray/default_system_tray_delegate.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "ash/session/session_state_delegate.h" | 9 #include "ash/session/session_state_delegate.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 void DefaultSystemTrayDelegate::GetCurrentIMEProperties( | 204 void DefaultSystemTrayDelegate::GetCurrentIMEProperties( |
205 IMEPropertyInfoList* list) { | 205 IMEPropertyInfoList* list) { |
206 } | 206 } |
207 | 207 |
208 void DefaultSystemTrayDelegate::SwitchIME(const std::string& ime_id) { | 208 void DefaultSystemTrayDelegate::SwitchIME(const std::string& ime_id) { |
209 } | 209 } |
210 | 210 |
211 void DefaultSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { | 211 void DefaultSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { |
212 } | 212 } |
213 | 213 |
214 void DefaultSystemTrayDelegate::ShowNetworkConfigure( | |
215 const std::string& network_id) { | |
216 } | |
217 | |
218 bool DefaultSystemTrayDelegate::EnrollNetwork(const std::string& network_id) { | |
219 return true; | |
220 } | |
221 | |
222 void DefaultSystemTrayDelegate::ManageBluetoothDevices() { | 214 void DefaultSystemTrayDelegate::ManageBluetoothDevices() { |
223 } | 215 } |
224 | 216 |
225 void DefaultSystemTrayDelegate::ToggleBluetooth() { | 217 void DefaultSystemTrayDelegate::ToggleBluetooth() { |
226 bluetooth_enabled_ = !bluetooth_enabled_; | 218 bluetooth_enabled_ = !bluetooth_enabled_; |
227 } | 219 } |
228 | 220 |
229 bool DefaultSystemTrayDelegate::IsBluetoothDiscovering() { | 221 bool DefaultSystemTrayDelegate::IsBluetoothDiscovering() { |
230 return false; | 222 return false; |
231 } | 223 } |
232 | 224 |
233 void DefaultSystemTrayDelegate::ShowMobileSimDialog() { | |
234 } | |
235 | |
236 void DefaultSystemTrayDelegate::ShowMobileSetupDialog( | |
237 const std::string& service_path) { | |
238 } | |
239 | |
240 void DefaultSystemTrayDelegate::ShowOtherNetworkDialog( | 225 void DefaultSystemTrayDelegate::ShowOtherNetworkDialog( |
241 const std::string& type) { | 226 const std::string& type) { |
242 } | 227 } |
243 | 228 |
244 bool DefaultSystemTrayDelegate::GetBluetoothAvailable() { | 229 bool DefaultSystemTrayDelegate::GetBluetoothAvailable() { |
245 return true; | 230 return true; |
246 } | 231 } |
247 | 232 |
248 bool DefaultSystemTrayDelegate::GetBluetoothEnabled() { | 233 bool DefaultSystemTrayDelegate::GetBluetoothEnabled() { |
249 return bluetooth_enabled_; | 234 return bluetooth_enabled_; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 | 280 |
296 void DefaultSystemTrayDelegate::AddCustodianInfoTrayObserver( | 281 void DefaultSystemTrayDelegate::AddCustodianInfoTrayObserver( |
297 CustodianInfoTrayObserver* observer) { | 282 CustodianInfoTrayObserver* observer) { |
298 } | 283 } |
299 | 284 |
300 void DefaultSystemTrayDelegate::RemoveCustodianInfoTrayObserver( | 285 void DefaultSystemTrayDelegate::RemoveCustodianInfoTrayObserver( |
301 CustodianInfoTrayObserver* observer) { | 286 CustodianInfoTrayObserver* observer) { |
302 } | 287 } |
303 | 288 |
304 } // namespace ash | 289 } // namespace ash |
OLD | NEW |