OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Movie class for WTL forms to call to control the media pipeline. | 5 // Movie class for WTL forms to call to control the media pipeline. |
6 | 6 |
7 #ifndef MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ | 7 #ifndef MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
8 #define MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ | 8 #define MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
9 | 9 |
10 #include "media/tools/player_wtl/player_wtl.h" | 10 #include "media/tools/player_wtl/player_wtl.h" |
11 | 11 |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/thread.h" | 14 #include "base/threading/thread.h" |
15 | 15 |
16 template <typename T> struct DefaultSingletonTraits; | 16 template <typename T> struct DefaultSingletonTraits; |
17 class WtlVideoRenderer; | 17 class WtlVideoRenderer; |
18 | 18 |
19 namespace media { | 19 namespace media { |
20 | 20 |
21 class PipelineImpl; | 21 class PipelineImpl; |
22 | 22 |
23 class Movie { | 23 class Movie { |
24 public: | 24 public: |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 float play_rate_; | 93 float play_rate_; |
94 HBITMAP movie_dib_; | 94 HBITMAP movie_dib_; |
95 HWND movie_hwnd_; | 95 HWND movie_hwnd_; |
96 | 96 |
97 DISALLOW_COPY_AND_ASSIGN(Movie); | 97 DISALLOW_COPY_AND_ASSIGN(Movie); |
98 }; | 98 }; |
99 | 99 |
100 } // namespace media | 100 } // namespace media |
101 | 101 |
102 #endif // MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ | 102 #endif // MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
OLD | NEW |