blob: 4a94579f27bee6846fded6f430deaaa0eac96608 [file] [log] [blame]
// Copyright 2017 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_ANDROID_OVERLAY_MOJO_FACTORY_H_
#define MEDIA_BASE_ANDROID_OVERLAY_MOJO_FACTORY_H_
#include "base/callback.h"
#include "base/macros.h"
#include "base/unguessable_token.h"
#include "media/base/android_overlay_config.h"
namespace media {
// Note that this compiles on non-android too.
using AndroidOverlayMojoFactoryCB =
base::RepeatingCallback<std::unique_ptr<AndroidOverlay>(
const base::UnguessableToken&,
AndroidOverlayConfig)>;
} // namespace media
#endif // MEDIA_BASE_ANDROID_OVERLAY_MOJO_FACTORY_H_