Chromium Code Reviews| Index: Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| diff --git a/Source/WebKit/chromium/public/WebMediaPlayerClient.h b/Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| index f551cacae897640e669ed956506b09fafed373ca..c6329cd7933243adf3d1c7bb77cb5a695d854285 100644 |
| --- a/Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| +++ b/Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| @@ -36,6 +36,7 @@ |
| namespace WebKit { |
| class WebFrame; |
| +class WebInbandTextTrack; |
| class WebLayer; |
| class WebMediaSource; |
| class WebPlugin; |
| @@ -83,6 +84,8 @@ public: |
| virtual void closeHelperPlugin() = 0; |
| virtual bool needsWebLayerForVideo() const = 0; |
| virtual void setWebLayer(WebLayer*) = 0; |
| + virtual void addTextTrack(WebInbandTextTrack*) = 0; |
| + |
|
acolwell GONE FROM CHROMIUM
2013/04/19 17:45:49
Might as well add the removeTextTrack() method as
Matthew Heaney (Chromium)
2013/04/20 04:19:25
Done.
|
| protected: |
| ~WebMediaPlayerClient() { } |
| }; |