| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_PLAYER_MOVIE_H_ | 7 #ifndef MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
| 8 #define MEDIA_PLAYER_MOVIE_H_ | 8 #define MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
| 9 | 9 |
| 10 #include "media/player/player_wtl.h" | 10 #include "media/tools/player_wtl/player_wtl.h" |
| 11 | 11 |
| 12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 13 #include "base/singleton.h" | 13 #include "base/singleton.h" |
| 14 #include "base/thread.h" | 14 #include "base/thread.h" |
| 15 | 15 |
| 16 class WtlVideoRenderer; | 16 class WtlVideoRenderer; |
| 17 | 17 |
| 18 namespace media { | 18 namespace media { |
| 19 | 19 |
| 20 class PipelineImpl; | 20 class PipelineImpl; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 int max_threads_; | 88 int max_threads_; |
| 89 float play_rate_; | 89 float play_rate_; |
| 90 HBITMAP movie_dib_; | 90 HBITMAP movie_dib_; |
| 91 HWND movie_hwnd_; | 91 HWND movie_hwnd_; |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(Movie); | 93 DISALLOW_COPY_AND_ASSIGN(Movie); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace media | 96 } // namespace media |
| 97 | 97 |
| 98 #endif // MEDIA_PLAYER_MOVIE_H_ | 98 #endif // MEDIA_TOOLS_PLAYER_WTL_MOVIE_H_ |
| OLD | NEW |