#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include <stdint.h>
#include "media/formats/webm/webm_webvtt_parser.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
InSequence;
namespace media {
Cue;
static Cue EncodeCue(const std::string& id,
const std::string& settings,
const std::string& content) { … }
static void DecodeCue(const Cue& cue,
std::string* id,
std::string* settings,
std::string* content) { … }
class WebMWebVTTParserTest : public testing::Test { … };
TEST_F(WebMWebVTTParserTest, Blank) { … }
TEST_F(WebMWebVTTParserTest, Id) { … }
TEST_F(WebMWebVTTParserTest, Settings) { … }
TEST_F(WebMWebVTTParserTest, Content) { … }
}