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