summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h b/chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h
new file mode 100644
index 00000000000..2612809f1ee
--- /dev/null
+++ b/chromium/third_party/blink/renderer/platform/media/web_inband_text_track_impl.h
@@ -0,0 +1,43 @@
+// Copyright 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_WEB_INBAND_TEXT_TRACK_IMPL_H_
+#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_WEB_INBAND_TEXT_TRACK_IMPL_H_
+
+#include "third_party/blink/public/platform/web_inband_text_track.h"
+#include "third_party/blink/public/platform/web_string.h"
+#include "third_party/blink/renderer/platform/platform_export.h"
+
+namespace blink {
+
+class PLATFORM_EXPORT WebInbandTextTrackImpl : public WebInbandTextTrack {
+ public:
+ WebInbandTextTrackImpl(Kind kind,
+ const WebString& label,
+ const WebString& language,
+ const WebString& id);
+ WebInbandTextTrackImpl(const WebInbandTextTrackImpl&) = delete;
+ WebInbandTextTrackImpl& operator=(const WebInbandTextTrackImpl&) = delete;
+ ~WebInbandTextTrackImpl() override;
+
+ void SetClient(WebInbandTextTrackClient* client) override;
+ WebInbandTextTrackClient* Client() override;
+
+ Kind GetKind() const override;
+
+ WebString Label() const override;
+ WebString Language() const override;
+ WebString Id() const override;
+
+ private:
+ WebInbandTextTrackClient* client_;
+ Kind kind_;
+ WebString label_;
+ WebString language_;
+ WebString id_;
+};
+
+} // namespace blink
+
+#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_WEB_INBAND_TEXT_TRACK_IMPL_H_