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

Unified Diff: content/renderer/media/webinbandtexttrack_impl.h

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
Index: content/renderer/media/webinbandtexttrack_impl.h
diff --git a/content/renderer/media/webinbandtexttrack_impl.h b/content/renderer/media/webinbandtexttrack_impl.h
deleted file mode 100644
index 293fbd3fac93919237f9cc959a88c321daaa21fe..0000000000000000000000000000000000000000
--- a/content/renderer/media/webinbandtexttrack_impl.h
+++ /dev/null
@@ -1,45 +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.
-
-#ifndef CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_
-#define CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_
-
-#include "third_party/WebKit/public/platform/WebInbandTextTrack.h"
-#include "third_party/WebKit/public/platform/WebString.h"
-
-namespace content {
-
-class WebInbandTextTrackImpl : public blink::WebInbandTextTrack {
- public:
- WebInbandTextTrackImpl(Kind kind,
- const blink::WebString& label,
- const blink::WebString& language,
- const blink::WebString& id,
- int index);
- virtual ~WebInbandTextTrackImpl();
-
- virtual void setClient(blink::WebInbandTextTrackClient* client);
- virtual blink::WebInbandTextTrackClient* client();
-
- virtual Kind kind() const;
-
- virtual blink::WebString label() const;
- virtual blink::WebString language() const;
- virtual blink::WebString id() const;
-
- virtual int textTrackIndex() const;
-
- private:
- blink::WebInbandTextTrackClient* client_;
- Kind kind_;
- blink::WebString label_;
- blink::WebString language_;
- blink::WebString id_;
- int index_;
- DISALLOW_COPY_AND_ASSIGN(WebInbandTextTrackImpl);
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_MEDIA_WEBINBANDTEXTTRACK_IMPL_H_
« no previous file with comments | « content/renderer/media/webaudiosourceprovider_impl_unittest.cc ('k') | content/renderer/media/webinbandtexttrack_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698