chromium/content/browser/serial/serial_test_utils.h

// 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.

#ifndef CONTENT_BROWSER_SERIAL_SERIAL_TEST_UTILS_H_
#define CONTENT_BROWSER_SERIAL_SERIAL_TEST_UTILS_H_

#include <memory>
#include <vector>

#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/serial_delegate.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace content {

class MockSerialDelegate : public SerialDelegate {};

class SerialTestContentBrowserClient : public ContentBrowserClient {};

}  // namespace content

#endif  // CONTENT_BROWSER_SERIAL_SERIAL_TEST_UTILS_H_