blob: 0e04a0eb46dab94db2290c73df6cf4b3f6293492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (c) 2012 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 MEDIA_BASE_TEXT_TRACK_H_
#define MEDIA_BASE_TEXT_TRACK_H_
#include <string>
#include "base/callback.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
namespace media {
class TextTrackConfig;
class TextTrack {
public:
virtual ~TextTrack() {}
virtual void addWebVTTCue(const base::TimeDelta& start,
const base::TimeDelta& end,
const std::string& id,
const std::string& content,
const std::string& settings) = 0;
};
typedef base::Callback<void
(scoped_ptr<TextTrack>)> AddTextTrackDoneCB;
typedef base::Callback<void
(const TextTrackConfig& config,
const AddTextTrackDoneCB& done_cb)> AddTextTrackCB;
} // namespace media
#endif // MEDIA_BASE_TEXT_TRACK_H_
|