chromium/content/browser/speech/tts_ssml_browsertest.cc

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

#include "content/browser/speech/tts_controller_impl.h"

#include <memory>

#include "base/functional/callback_helpers.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"

namespace content {

namespace {

// Tts Controller implementation that does nothing.
class MockTtsControllerImpl : public TtsControllerImpl {};

class TtsSsmlBrowserTest : public ContentBrowserTest {};

}  // namespace

IN_PROC_BROWSER_TEST_F(TtsSsmlBrowserTest, TestStripSSML) {}

}  // namespace content