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

Unified Diff: webkit/renderer/media/texttrack_impl.h

Issue 18261007: Migrate webkit/renderer/media/ to content/renderer/media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win64 AGAIN Created 7 years, 5 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 | « webkit/renderer/media/test_response_generator.cc ('k') | webkit/renderer/media/texttrack_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/renderer/media/texttrack_impl.h
diff --git a/webkit/renderer/media/texttrack_impl.h b/webkit/renderer/media/texttrack_impl.h
deleted file mode 100644
index 97ed9bb1c31439bcf4b68f6c569f870c3df7c339..0000000000000000000000000000000000000000
--- a/webkit/renderer/media/texttrack_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 WEBKIT_RENDERER_MEDIA_TEXTTRACK_IMPL_H_
-#define WEBKIT_RENDERER_MEDIA_TEXTTRACK_IMPL_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "media/base/text_track.h"
-
-namespace WebKit {
-class WebMediaPlayerClient;
-}
-
-namespace webkit_media {
-
-class WebInbandTextTrackImpl;
-
-class TextTrackImpl : public media::TextTrack {
- public:
- // Constructor assumes ownership of the |text_track| object.
- TextTrackImpl(WebKit::WebMediaPlayerClient* client,
- WebInbandTextTrackImpl* text_track);
-
- virtual ~TextTrackImpl();
-
- virtual void addWebVTTCue(const base::TimeDelta& start,
- const base::TimeDelta& end,
- const std::string& id,
- const std::string& content,
- const std::string& settings) OVERRIDE;
-
- private:
- WebKit::WebMediaPlayerClient* client_;
- scoped_ptr<WebInbandTextTrackImpl> text_track_;
- DISALLOW_COPY_AND_ASSIGN(TextTrackImpl);
-};
-
-} // namespace webkit_media
-
-#endif // WEBKIT_RENDERER_MEDIA_TEXTTRACK_IMPL_H_
-
« no previous file with comments | « webkit/renderer/media/test_response_generator.cc ('k') | webkit/renderer/media/texttrack_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698