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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 void TestSystemTrayDelegate::GetCurrentIMEProperties( | 190 void TestSystemTrayDelegate::GetCurrentIMEProperties( |
191 IMEPropertyInfoList* list) { | 191 IMEPropertyInfoList* list) { |
192 } | 192 } |
193 | 193 |
194 void TestSystemTrayDelegate::SwitchIME(const std::string& ime_id) { | 194 void TestSystemTrayDelegate::SwitchIME(const std::string& ime_id) { |
195 } | 195 } |
196 | 196 |
197 void TestSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { | 197 void TestSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { |
198 } | 198 } |
199 | 199 |
200 void TestSystemTrayDelegate::CancelDriveOperation(const FilePath&) { | 200 void TestSystemTrayDelegate::CancelDriveOperation(const base::FilePath&) { |
201 } | 201 } |
202 | 202 |
203 void TestSystemTrayDelegate::GetDriveOperationStatusList( | 203 void TestSystemTrayDelegate::GetDriveOperationStatusList( |
204 ash::DriveOperationStatusList*) { | 204 ash::DriveOperationStatusList*) { |
205 } | 205 } |
206 | 206 |
207 void TestSystemTrayDelegate::GetMostRelevantNetworkIcon(NetworkIconInfo* info, | 207 void TestSystemTrayDelegate::GetMostRelevantNetworkIcon(NetworkIconInfo* info, |
208 bool large) { | 208 bool large) { |
209 } | 209 } |
210 | 210 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 base::Time TestSystemTrayDelegate::GetSessionStartTime() { | 330 base::Time TestSystemTrayDelegate::GetSessionStartTime() { |
331 return base::Time(); | 331 return base::Time(); |
332 } | 332 } |
333 | 333 |
334 base::TimeDelta TestSystemTrayDelegate::GetSessionLengthLimit() { | 334 base::TimeDelta TestSystemTrayDelegate::GetSessionLengthLimit() { |
335 return base::TimeDelta(); | 335 return base::TimeDelta(); |
336 } | 336 } |
337 | 337 |
338 } // namespace test | 338 } // namespace test |
339 } // namespace ash | 339 } // namespace ash |
OLD | NEW |