chromium/media/formats/webm/webm_webvtt_parser_unittest.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#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) {}

}  // namespace media