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 #ifndef MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 5 #ifndef MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
6 #define MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 6 #define MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
12 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
13 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
16 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
17 #include "media/base/cdm_factory.h" | 18 #include "media/base/cdm_factory.h" |
18 #include "media/base/pipeline.h" | 19 #include "media/base/pipeline.h" |
19 #include "media/base/renderer_factory.h" | 20 #include "media/base/renderer_factory.h" |
20 #include "media/base/text_track.h" | 21 #include "media/base/text_track.h" |
21 #include "media/blink/buffered_data_source.h" | 22 #include "media/blink/buffered_data_source.h" |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 scoped_ptr<blink::WebContentDecryptionModuleResult> set_cdm_result_; | 397 scoped_ptr<blink::WebContentDecryptionModuleResult> set_cdm_result_; |
397 | 398 |
398 scoped_ptr<RendererFactory> renderer_factory_; | 399 scoped_ptr<RendererFactory> renderer_factory_; |
399 | 400 |
400 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 401 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); |
401 }; | 402 }; |
402 | 403 |
403 } // namespace media | 404 } // namespace media |
404 | 405 |
405 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 406 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
OLD | NEW |