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

Side by Side Diff: media/blink/texttrack_impl.h

Issue 2533273002: media: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
« no previous file with comments | « media/base/renderer.h ('k') | media/blink/webcontentdecryptionmodule_impl.h » ('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 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_TEXTTRACK_IMPL_H_ 5 #ifndef MEDIA_BLINK_TEXTTRACK_IMPL_H_
6 #define MEDIA_BLINK_TEXTTRACK_IMPL_H_ 6 #define MEDIA_BLINK_TEXTTRACK_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "media/base/text_track.h" 12 #include "media/base/text_track.h"
13 13
14 namespace base { 14 namespace base {
15 class SingleThreadTaskRunner; 15 class SingleThreadTaskRunner;
16 } 16 }
17 17
18 namespace blink { 18 namespace blink {
19 class WebInbandTextTrackClient;
20 class WebMediaPlayerClient; 19 class WebMediaPlayerClient;
21 } 20 }
22 21
23 namespace media { 22 namespace media {
24 23
25 class WebInbandTextTrackImpl; 24 class WebInbandTextTrackImpl;
26 25
27 class TextTrackImpl : public TextTrack { 26 class TextTrackImpl : public TextTrack {
28 public: 27 public:
29 // Constructor assumes ownership of the |text_track| object. 28 // Constructor assumes ownership of the |text_track| object.
(...skipping 22 matching lines...) Expand all
52 51
53 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 52 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
54 blink::WebMediaPlayerClient* client_; 53 blink::WebMediaPlayerClient* client_;
55 std::unique_ptr<WebInbandTextTrackImpl> text_track_; 54 std::unique_ptr<WebInbandTextTrackImpl> text_track_;
56 DISALLOW_COPY_AND_ASSIGN(TextTrackImpl); 55 DISALLOW_COPY_AND_ASSIGN(TextTrackImpl);
57 }; 56 };
58 57
59 } // namespace media 58 } // namespace media
60 59
61 #endif // MEDIA_BLINK_TEXTTRACK_IMPL_H_ 60 #endif // MEDIA_BLINK_TEXTTRACK_IMPL_H_
OLDNEW
« no previous file with comments | « media/base/renderer.h ('k') | media/blink/webcontentdecryptionmodule_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698