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" |
11 #include "ash/volume_control_delegate.h" | 11 #include "ash/volume_control_delegate.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/time.h" | 13 #include "base/time/time.h" |
14 | 14 |
15 namespace ash { | 15 namespace ash { |
16 namespace test { | 16 namespace test { |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 class TestVolumeControlDelegate : public VolumeControlDelegate { | 20 class TestVolumeControlDelegate : public VolumeControlDelegate { |
21 public: | 21 public: |
22 TestVolumeControlDelegate() {} | 22 TestVolumeControlDelegate() {} |
23 virtual ~TestVolumeControlDelegate() {} | 23 virtual ~TestVolumeControlDelegate() {} |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 base::string16 TestSystemTrayDelegate::FormatTimeDuration( | 298 base::string16 TestSystemTrayDelegate::FormatTimeDuration( |
299 const base::TimeDelta& delta) const { | 299 const base::TimeDelta& delta) const { |
300 return base::string16(); | 300 return base::string16(); |
301 } | 301 } |
302 | 302 |
303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { | 303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { |
304 } | 304 } |
305 | 305 |
306 } // namespace test | 306 } // namespace test |
307 } // namespace ash | 307 } // namespace ash |
OLD | NEW |