Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: media/tools/player_wtl/movie.h

Issue 6028009: Move base/thread.h to base/threading, fix up callers to use the new location.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/filters/ffmpeg_demuxer_unittest.cc ('k') | media/tools/player_x11/player_x11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/filters/ffmpeg_demuxer_unittest.cc ('k') | media/tools/player_x11/player_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698