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 "media/filters/audio_renderer_impl.h" | 5 #include "media/renderers/audio_renderer_impl.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/callback_helpers.h" | 13 #include "base/callback_helpers.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/metrics/histogram.h" | 15 #include "base/metrics/histogram.h" |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 << buffering_state; | 738 << buffering_state; |
739 DCHECK_NE(buffering_state_, buffering_state); | 739 DCHECK_NE(buffering_state_, buffering_state); |
740 lock_.AssertAcquired(); | 740 lock_.AssertAcquired(); |
741 buffering_state_ = buffering_state; | 741 buffering_state_ = buffering_state; |
742 | 742 |
743 task_runner_->PostTask(FROM_HERE, | 743 task_runner_->PostTask(FROM_HERE, |
744 base::Bind(buffering_state_cb_, buffering_state_)); | 744 base::Bind(buffering_state_cb_, buffering_state_)); |
745 } | 745 } |
746 | 746 |
747 } // namespace media | 747 } // namespace media |
OLD | NEW |