| 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..b0d8b7decc046753c1f3e76d5b22e470a591cdf7 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,9 @@ public:
|
| virtual void closeHelperPlugin() = 0;
|
| virtual bool needsWebLayerForVideo() const = 0;
|
| virtual void setWebLayer(WebLayer*) = 0;
|
| + virtual void addTextTrack(WebInbandTextTrack*) = 0;
|
| + virtual void removeTextTrack(WebInbandTextTrack*) = 0;
|
| +
|
| protected:
|
| ~WebMediaPlayerClient() { }
|
| };
|
|
|