| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ |
| 6 #define COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ | 6 #define COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/linked_ptr.h" | 9 #include "base/memory/linked_ptr.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "media/audio/fake_audio_log_factory.h" | 14 #include "media/audio/fake_audio_log_factory.h" |
| 15 #include "media/base/audio_hardware_config.h" | 15 #include "media/base/audio_hardware_config.h" |
| 16 #include "media/blink/url_index.h" | 16 #include "media/blink/url_index.h" |
| 17 #include "media/mojo/interfaces/service_factory.mojom.h" | 17 #include "media/mojo/interfaces/service_factory.mojom.h" |
| 18 #include "mojo/shell/public/interfaces/service_provider.mojom.h" | 18 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class SingleThreadTaskRunner; | 21 class SingleThreadTaskRunner; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace blink { | 24 namespace blink { |
| 25 class WebContentDecryptionModule; | 25 class WebContentDecryptionModule; |
| 26 class WebEncryptedMediaClient; | 26 class WebEncryptedMediaClient; |
| 27 class WebMediaPlayer; | 27 class WebMediaPlayer; |
| 28 class WebLocalFrame; | 28 class WebLocalFrame; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 // Media resource cache, lazily initialized. | 95 // Media resource cache, lazily initialized. |
| 96 linked_ptr<media::UrlIndex> url_index_; | 96 linked_ptr<media::UrlIndex> url_index_; |
| 97 | 97 |
| 98 DISALLOW_COPY_AND_ASSIGN(MediaFactory); | 98 DISALLOW_COPY_AND_ASSIGN(MediaFactory); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 } // namespace html_viewer | 101 } // namespace html_viewer |
| 102 | 102 |
| 103 #endif // COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ | 103 #endif // COMPONENTS_HTML_VIEWER_MEDIA_FACTORY_H_ |
| OLD | NEW |