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 "media/audio/sounds/test_data.h" | 5 #include "media/audio/sounds/test_data.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 | 9 |
10 namespace media { | 10 namespace media { |
11 | 11 |
12 TestObserver::TestObserver(const base::Closure& quit) | 12 TestObserver::TestObserver(const base::Closure& quit) |
13 : loop_(base::MessageLoop::current()), | 13 : loop_(base::MessageLoop::current()), |
14 quit_(quit), | 14 quit_(quit), |
15 num_play_requests_(0), | 15 num_play_requests_(0), |
| 16 num_replays_(0), |
16 num_stop_requests_(0), | 17 num_stop_requests_(0), |
17 cursor_(0) { | 18 cursor_(0) { |
18 DCHECK(loop_); | 19 DCHECK(loop_); |
19 } | 20 } |
20 | 21 |
21 TestObserver::~TestObserver() { | 22 TestObserver::~TestObserver() {} |
22 } | |
23 | 23 |
24 void TestObserver::OnPlay() { | 24 void TestObserver::OnPlay() { |
25 ++num_play_requests_; | 25 ++num_play_requests_; |
26 } | 26 } |
27 | 27 |
| 28 void TestObserver::OnReplay() { |
| 29 ++num_replays_; |
| 30 } |
| 31 |
28 void TestObserver::OnStop(size_t cursor) { | 32 void TestObserver::OnStop(size_t cursor) { |
29 ++num_stop_requests_; | 33 ++num_stop_requests_; |
30 cursor_ = cursor; | 34 cursor_ = cursor; |
31 loop_->PostTask(FROM_HERE, quit_); | 35 loop_->PostTask(FROM_HERE, quit_); |
32 } | 36 } |
33 | 37 |
34 } // namespace media | 38 } // namespace media |
OLD | NEW |