summaryrefslogtreecommitdiff
path: root/chromium/content/public/browser/presentation_request.cc
blob: b8df3bc21c72667bf9d4a61541111efebf27815b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2015 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.

#include "content/public/browser/presentation_request.h"

namespace content {

PresentationRequest::PresentationRequest(
    const GlobalFrameRoutingId& render_frame_host_id,
    const std::vector<GURL>& presentation_urls,
    const url::Origin& frame_origin)
    : render_frame_host_id(render_frame_host_id),
      presentation_urls(presentation_urls),
      frame_origin(frame_origin) {}

PresentationRequest::~PresentationRequest() = default;

PresentationRequest::PresentationRequest(const PresentationRequest& other) =
    default;

PresentationRequest& PresentationRequest::operator=(
    const PresentationRequest& other) = default;

}  // namespace content