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

Unified Diff: Source/web/InbandTextTrackPrivateImpl.cpp

Issue 60203008: Remove the mode getter/setter for in-band text tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 | « Source/web/InbandTextTrackPrivateImpl.h ('k') | public/web/WebInbandTextTrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InbandTextTrackPrivateImpl.cpp
diff --git a/Source/web/InbandTextTrackPrivateImpl.cpp b/Source/web/InbandTextTrackPrivateImpl.cpp
index fb35dff21094148ce8f6f5fb258f3e08f48a19e9..1c7318a2f4c0e3bd7b034a4b1c8220004cad37b5 100644
--- a/Source/web/InbandTextTrackPrivateImpl.cpp
+++ b/Source/web/InbandTextTrackPrivateImpl.cpp
@@ -49,16 +49,6 @@ InbandTextTrackPrivateImpl::~InbandTextTrackPrivateImpl()
m_track->setClient(0);
}
-void InbandTextTrackPrivateImpl::setMode(Mode mode)
-{
- m_track->setMode(static_cast<WebInbandTextTrack::Mode>(mode));
-}
-
-WebCore::InbandTextTrackPrivate::Mode InbandTextTrackPrivateImpl::mode() const
-{
- return static_cast<WebCore::InbandTextTrackPrivate::Mode>(m_track->mode());
-}
-
WebCore::InbandTextTrackPrivate::Kind InbandTextTrackPrivateImpl::kind() const
{
return static_cast<WebCore::InbandTextTrackPrivate::Kind>(m_track->kind());
« no previous file with comments | « Source/web/InbandTextTrackPrivateImpl.h ('k') | public/web/WebInbandTextTrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698