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

Side by Side Diff: media/blink/webinbandtexttrack_impl.cc

Issue 495353003: Move WebMediaPlayerImpl and its dependencies to media/blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 3 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
« no previous file with comments | « media/blink/webinbandtexttrack_impl.h ('k') | media/blink/webmediaplayer_delegate.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 #include "content/renderer/media/webinbandtexttrack_impl.h" 5 #include "media/blink/webinbandtexttrack_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace content { 9 namespace media {
10 10
11 WebInbandTextTrackImpl::WebInbandTextTrackImpl( 11 WebInbandTextTrackImpl::WebInbandTextTrackImpl(
12 Kind kind, 12 Kind kind,
13 const blink::WebString& label, 13 const blink::WebString& label,
14 const blink::WebString& language, 14 const blink::WebString& language,
15 const blink::WebString& id, 15 const blink::WebString& id,
16 int index) 16 int index)
17 : client_(NULL), 17 : client_(NULL),
18 kind_(kind), 18 kind_(kind),
19 label_(label), 19 label_(label),
(...skipping 28 matching lines...) Expand all
48 } 48 }
49 49
50 blink::WebString WebInbandTextTrackImpl::id() const { 50 blink::WebString WebInbandTextTrackImpl::id() const {
51 return id_; 51 return id_;
52 } 52 }
53 53
54 int WebInbandTextTrackImpl::textTrackIndex() const { 54 int WebInbandTextTrackImpl::textTrackIndex() const {
55 return index_; 55 return index_;
56 } 56 }
57 57
58 } // namespace content 58 } // namespace media
OLDNEW
« no previous file with comments | « media/blink/webinbandtexttrack_impl.h ('k') | media/blink/webmediaplayer_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698