| 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/tray/test_system_tray_delegate.h" | 5 #include "ash/system/tray/test_system_tray_delegate.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "ash/session_state_delegate.h" | 9 #include "ash/session_state_delegate.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 bluetooth_enabled_ = !bluetooth_enabled_; | 231 bluetooth_enabled_ = !bluetooth_enabled_; |
| 232 } | 232 } |
| 233 | 233 |
| 234 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { | 234 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { |
| 235 return false; | 235 return false; |
| 236 } | 236 } |
| 237 | 237 |
| 238 void TestSystemTrayDelegate::ShowMobileSimDialog() { | 238 void TestSystemTrayDelegate::ShowMobileSimDialog() { |
| 239 } | 239 } |
| 240 | 240 |
| 241 void TestSystemTrayDelegate::ShowMobileSetup(const std::string& network_id) { | 241 void TestSystemTrayDelegate::ShowMobileSetupDialog( |
| 242 const std::string& service_path) { |
| 242 } | 243 } |
| 243 | 244 |
| 244 void TestSystemTrayDelegate::ShowOtherWifi() { | 245 void TestSystemTrayDelegate::ShowOtherWifi() { |
| 245 } | 246 } |
| 246 | 247 |
| 247 void TestSystemTrayDelegate::ShowOtherVPN() { | 248 void TestSystemTrayDelegate::ShowOtherVPN() { |
| 248 } | 249 } |
| 249 | 250 |
| 250 void TestSystemTrayDelegate::ShowOtherCellular() { | 251 void TestSystemTrayDelegate::ShowOtherCellular() { |
| 251 } | 252 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 int TestSystemTrayDelegate::GetSystemTrayMenuWidth() { | 285 int TestSystemTrayDelegate::GetSystemTrayMenuWidth() { |
| 285 // This is the default width for English languages. | 286 // This is the default width for English languages. |
| 286 return 300; | 287 return 300; |
| 287 } | 288 } |
| 288 | 289 |
| 289 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 290 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
| 290 } | 291 } |
| 291 | 292 |
| 292 } // namespace test | 293 } // namespace test |
| 293 } // namespace ash | 294 } // namespace ash |
| OLD | NEW |