chromium/components/media_router/browser/presentation/start_presentation_context.h

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

#ifndef COMPONENTS_MEDIA_ROUTER_BROWSER_PRESENTATION_START_PRESENTATION_CONTEXT_H_
#define COMPONENTS_MEDIA_ROUTER_BROWSER_PRESENTATION_START_PRESENTATION_CONTEXT_H_

#include "base/functional/callback.h"
#include "components/media_router/common/mojom/media_router.mojom-forward.h"
#include "content/public/browser/presentation_request.h"
#include "content/public/browser/presentation_service_delegate.h"

namespace content {
struct PresentationRequest;
}  // namespace content

namespace media_router {

class MediaRoute;
class RouteRequestResult;

// Helper data structure to hold information for a request from the
// Presentation API. Contains information on the PresentationRequest, and
// success / error callbacks. Depending on the route creation outcome,
// only one of the callbacks will be invoked exactly once.
class StartPresentationContext {};

}  // namespace media_router

#endif  // COMPONENTS_MEDIA_ROUTER_BROWSER_PRESENTATION_START_PRESENTATION_CONTEXT_H_