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..37edb8e7adb9c74ed5553403f66ccfeaab7b14b4 100644 |
| --- a/Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| +++ b/Source/WebKit/chromium/public/WebMediaPlayerClient.h |
| @@ -31,6 +31,7 @@ |
| #ifndef WebMediaPlayerClient_h |
| #define WebMediaPlayerClient_h |
| +#include "WebInbandTextTrack.h" |
|
acolwell GONE FROM CHROMIUM
2013/04/17 00:13:56
nit: remove and forward declare.
Matthew Heaney (Chromium)
2013/04/18 23:15:42
Done.
|
| #include "WebMediaPlayer.h" |
| namespace WebKit { |
| @@ -83,6 +84,9 @@ public: |
| virtual void closeHelperPlugin() = 0; |
| virtual bool needsWebLayerForVideo() const = 0; |
| virtual void setWebLayer(WebLayer*) = 0; |
| + // TODO(matthewjheaney): resolve nature of pointer |
|
acolwell GONE FROM CHROMIUM
2013/04/17 00:13:56
Remove comment? I'm assuming you have resolved the
Matthew Heaney (Chromium)
2013/04/18 23:15:42
Done.
|
| + virtual void addTextTrack(WebInbandTextTrack* text_track) = 0; |
|
acolwell GONE FROM CHROMIUM
2013/04/17 00:13:56
nit: remove parameter name.
Matthew Heaney (Chromium)
2013/04/18 23:15:42
Done.
|
| + |
| protected: |
| ~WebMediaPlayerClient() { } |
| }; |