Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #include "WebInbandTextTrackClientImpl.h" | |
| 2 | |
| 3 #include <wtf/ExportMacros.h> | |
| 4 #include <wtf/text/WTFString.h> | |
| 5 #include "InbandTextTrackPrivateClient.h" | |
| 6 #define WEBKIT_IMPLEMENTATION 1 | |
| 7 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | |
| 8 | |
| 9 namespace WebKit { | |
| 10 | |
| 11 WebInbandTextTrackClientImpl::WebInbandTextTrackClientImpl( | |
|
acolwell GONE FROM CHROMIUM
2013/04/23 06:34:18
This file doesn't appear to be needed anymore.
Matthew Heaney (Chromium)
2013/04/24 04:32:18
Done.
| |
| 12 WebCore::InbandTextTrackPrivateClient* client) | |
| 13 : m_client(client) | |
| 14 { | |
| 15 ASSERT(client); | |
| 16 } | |
| 17 | |
| 18 void WebInbandTextTrackClientImpl::addWebVTTCue( | |
| 19 WebCore::InbandTextTrackPrivate* track, | |
| 20 double start, | |
| 21 double end, | |
| 22 const WebString& id, | |
| 23 const WebString& content, | |
| 24 const WebString& settings) | |
| 25 { | |
| 26 m_client->addWebVTTCue(track, start, end, id, content, settings); | |
| 27 } | |
| 28 | |
| 29 } // namespace WebKit | |
| OLD | NEW |