#include "content/public/browser/presentation_request.h"
namespace content {
PresentationRequest::PresentationRequest(
const GlobalRenderFrameHostId& render_frame_host_id,
const std::vector<GURL>& presentation_urls,
const url::Origin& frame_origin)
: … { … }
PresentationRequest::~PresentationRequest() = default;
PresentationRequest::PresentationRequest(const PresentationRequest& other) =
default;
PresentationRequest& PresentationRequest::operator=(
const PresentationRequest& other) = default;
bool PresentationRequest::operator==(const PresentationRequest& other) const { … }
}