Chromium Code Reviews| Index: public/web/WebInbandTextTrack.h |
| diff --git a/public/web/WebInbandTextTrack.h b/public/web/WebInbandTextTrack.h |
| index 3aaf8b8bcae7534b54dca7ab5312c1f71cca6485..c77b613de35093c60c88629dd7fb8afc8c05a1f1 100644 |
| --- a/public/web/WebInbandTextTrack.h |
| +++ b/public/web/WebInbandTextTrack.h |
| @@ -28,44 +28,4 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -#ifndef WebInbandTextTrack_h |
| -#define WebInbandTextTrack_h |
| - |
| -namespace blink { |
| - |
| -class WebString; |
| -class WebInbandTextTrackClient; |
| - |
| -class WebInbandTextTrack { |
| -public: |
| - enum Kind { |
| - KindSubtitles, |
| - KindCaptions, |
| - KindDescriptions, |
| - KindChapters, |
| - KindMetadata, |
| - KindNone |
| - }; |
| - |
| - // FIXME: Remove after Chromium's use in WebInbandTextTrackImpl has been removed. |
| - enum Mode { |
| - ModeDisabled, |
| - ModeHidden, |
| - ModeShowing |
| - }; |
| - |
| - virtual ~WebInbandTextTrack() {} |
| - |
| - virtual void setClient(WebInbandTextTrackClient*) = 0; |
| - virtual WebInbandTextTrackClient* client() = 0; |
| - |
| - virtual Kind kind() const = 0; |
| - virtual WebString label() const = 0; |
| - virtual WebString language() const = 0; |
| - |
| - virtual int textTrackIndex() const = 0; |
| -}; |
| - |
| -} // namespace blink |
| - |
| -#endif |
| +#include "../platform/WebInbandTextTrack.h" |
|
abarth-chromium
2013/11/07 18:25:22
You can just write:
#include "public/platform/Web
philipj_slow
2013/11/07 19:42:03
Done. I was tricked by the name other files in thi
|