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/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 void TestSystemTrayDelegate::RequestLockScreen() { | 161 void TestSystemTrayDelegate::RequestLockScreen() { |
162 } | 162 } |
163 | 163 |
164 void TestSystemTrayDelegate::RequestRestart() { | 164 void TestSystemTrayDelegate::RequestRestart() { |
165 } | 165 } |
166 | 166 |
167 void TestSystemTrayDelegate::GetAvailableBluetoothDevices( | 167 void TestSystemTrayDelegate::GetAvailableBluetoothDevices( |
168 BluetoothDeviceList* list) { | 168 BluetoothDeviceList* list) { |
169 } | 169 } |
170 | 170 |
| 171 void TestSystemTrayDelegate::BluetoothSetDiscovering(bool value) { |
| 172 } |
| 173 |
171 void TestSystemTrayDelegate::ToggleBluetoothConnection( | 174 void TestSystemTrayDelegate::ToggleBluetoothConnection( |
172 const std::string& address) { | 175 const std::string& address) { |
173 } | 176 } |
174 | 177 |
175 void TestSystemTrayDelegate::GetCurrentIME(IMEInfo* info) { | 178 void TestSystemTrayDelegate::GetCurrentIME(IMEInfo* info) { |
176 } | 179 } |
177 | 180 |
178 void TestSystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) { | 181 void TestSystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) { |
179 } | 182 } |
180 | 183 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 base::Time TestSystemTrayDelegate::GetSessionStartTime() { | 320 base::Time TestSystemTrayDelegate::GetSessionStartTime() { |
318 return base::Time(); | 321 return base::Time(); |
319 } | 322 } |
320 | 323 |
321 base::TimeDelta TestSystemTrayDelegate::GetSessionLengthLimit() { | 324 base::TimeDelta TestSystemTrayDelegate::GetSessionLengthLimit() { |
322 return base::TimeDelta(); | 325 return base::TimeDelta(); |
323 } | 326 } |
324 | 327 |
325 } // namespace test | 328 } // namespace test |
326 } // namespace ash | 329 } // namespace ash |
OLD | NEW |