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

Unified Diff: content/renderer/media/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/media/webinbandtexttrack_impl.h ('k') | content/renderer/media/webmediaplayer_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webinbandtexttrack_impl.cc
diff --git a/content/renderer/media/webinbandtexttrack_impl.cc b/content/renderer/media/webinbandtexttrack_impl.cc
deleted file mode 100644
index e83af8f3451fba7af3a0a179476dc880e6d2634b..0000000000000000000000000000000000000000
--- a/content/renderer/media/webinbandtexttrack_impl.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/renderer/media/webinbandtexttrack_impl.h"
-
-#include "base/logging.h"
-
-namespace content {
-
-WebInbandTextTrackImpl::WebInbandTextTrackImpl(
- Kind kind,
- const blink::WebString& label,
- const blink::WebString& language,
- const blink::WebString& id,
- int index)
- : client_(NULL),
- kind_(kind),
- label_(label),
- language_(language),
- id_(id),
- index_(index) {
-}
-
-WebInbandTextTrackImpl::~WebInbandTextTrackImpl() {
- DCHECK(!client_);
-}
-
-void WebInbandTextTrackImpl::setClient(
- blink::WebInbandTextTrackClient* client) {
- client_ = client;
-}
-
-blink::WebInbandTextTrackClient* WebInbandTextTrackImpl::client() {
- return client_;
-}
-
-WebInbandTextTrackImpl::Kind WebInbandTextTrackImpl::kind() const {
- return kind_;
-}
-
-blink::WebString WebInbandTextTrackImpl::label() const {
- return label_;
-}
-
-blink::WebString WebInbandTextTrackImpl::language() const {
- return language_;
-}
-
-blink::WebString WebInbandTextTrackImpl::id() const {
- return id_;
-}
-
-int WebInbandTextTrackImpl::textTrackIndex() const {
- return index_;
-}
-
-} // namespace content
« no previous file with comments | « content/renderer/media/webinbandtexttrack_impl.h ('k') | content/renderer/media/webmediaplayer_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698