| Index: webkit/media/webinbandtexttrack_impl.h
|
| diff --git a/webkit/media/webinbandtexttrack_impl.h b/webkit/media/webinbandtexttrack_impl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ed9f5d3c4bd553b9ce177e95db2b2ee7d40ab713
|
| --- /dev/null
|
| +++ b/webkit/media/webinbandtexttrack_impl.h
|
| @@ -0,0 +1,48 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef WEBKIT_MEDIA_WEBINANDTEXTTRACK_IMPL_H_
|
| +#define WEBKIT_MEDIA_WEBINANDTEXTTRACK_IMPL_H_
|
| +
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
|
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebInbandTextTrack.h"
|
| +
|
| +namespace webkit_media {
|
| +
|
| +class WebInbandTextTrackImpl : public WebKit::WebInbandTextTrack {
|
| + public:
|
| + WebInbandTextTrackImpl(Kind kind,
|
| + const WebKit::WebString& label,
|
| + const WebKit::WebString& language,
|
| + int index);
|
| + virtual ~WebInbandTextTrackImpl();
|
| +
|
| + virtual void setClient(WebKit::WebInbandTextTrackClient* client);
|
| + virtual WebKit::WebInbandTextTrackClient* client();
|
| +
|
| + virtual void setMode(Mode mode);
|
| + virtual Mode mode() const;
|
| +
|
| + virtual Kind kind() const;
|
| + virtual bool isClosedCaptions() const;
|
| +
|
| + virtual WebKit::WebString label() const;
|
| + virtual WebKit::WebString language() const;
|
| + virtual bool isDefault() const;
|
| +
|
| + virtual int textTrackIndex() const;
|
| +
|
| + private:
|
| + WebKit::WebInbandTextTrackClient* client_;
|
| + Mode mode_;
|
| + Kind kind_;
|
| + WebKit::WebString label_;
|
| + WebKit::WebString language_;
|
| + int index_;
|
| + DISALLOW_COPY_AND_ASSIGN(WebInbandTextTrackImpl);
|
| +};
|
| +
|
| +} // namespace webkit_media
|
| +
|
| +#endif // WEBKIT_MEDIA_WEBINANDTEXTTRACK_IMPL_H_
|
|
|