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 #ifndef MEDIA_BASE_PIPELINE_H_ | 5 #ifndef MEDIA_BASE_PIPELINE_H_ |
6 #define MEDIA_BASE_PIPELINE_H_ | 6 #define MEDIA_BASE_PIPELINE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
11 #include "base/synchronization/condition_variable.h" | 11 #include "base/synchronization/condition_variable.h" |
12 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
14 #include "base/time/default_clock.h" | 14 #include "base/time/default_clock.h" |
15 #include "media/base/audio_renderer.h" | 15 #include "media/base/audio_renderer.h" |
16 #include "media/base/demuxer.h" | 16 #include "media/base/demuxer.h" |
17 #include "media/base/media_export.h" | 17 #include "media/base/media_export.h" |
18 #include "media/base/pipeline_status.h" | 18 #include "media/base/pipeline_status.h" |
19 #include "media/base/ranges.h" | 19 #include "media/base/ranges.h" |
20 #include "media/base/serial_runner.h" | 20 #include "media/base/serial_runner.h" |
21 #include "ui/gfx/size.h" | 21 #include "ui/gfx/size.h" |
22 | 22 |
23 class MessageLoop; | |
24 | |
25 namespace base { | 23 namespace base { |
26 class MessageLoopProxy; | 24 class MessageLoopProxy; |
27 class TimeDelta; | 25 class TimeDelta; |
28 } | 26 } |
29 | 27 |
30 namespace media { | 28 namespace media { |
31 | 29 |
32 class Clock; | 30 class Clock; |
33 class FilterCollection; | 31 class FilterCollection; |
34 class MediaLog; | 32 class MediaLog; |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 scoped_ptr<SerialRunner> pending_callbacks_; | 473 scoped_ptr<SerialRunner> pending_callbacks_; |
476 | 474 |
477 base::ThreadChecker thread_checker_; | 475 base::ThreadChecker thread_checker_; |
478 | 476 |
479 DISALLOW_COPY_AND_ASSIGN(Pipeline); | 477 DISALLOW_COPY_AND_ASSIGN(Pipeline); |
480 }; | 478 }; |
481 | 479 |
482 } // namespace media | 480 } // namespace media |
483 | 481 |
484 #endif // MEDIA_BASE_PIPELINE_H_ | 482 #endif // MEDIA_BASE_PIPELINE_H_ |
OLD | NEW |