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
3 // found in the LICENSE file.
5 #include "media/audio/sounds/test_data.h"
7 #include "base/logging.h"
8 #include "base/message_loop/message_loop.h"
12 TestObserver::TestObserver(const base::Closure
& quit
)
13 : loop_(base::MessageLoop::current()),
15 num_play_requests_(0),
16 num_stop_requests_(0),
21 TestObserver::~TestObserver() {
24 void TestObserver::OnPlay() {
28 void TestObserver::OnStop(size_t cursor
) {
31 loop_
->PostTask(FROM_HERE
, quit_
);