1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "content/public/browser/presentation_request.h"
6 
7 namespace content {
8 
PresentationRequest(const GlobalFrameRoutingId & render_frame_host_id,const std::vector<GURL> & presentation_urls,const url::Origin & frame_origin)9 PresentationRequest::PresentationRequest(
10     const GlobalFrameRoutingId& render_frame_host_id,
11     const std::vector<GURL>& presentation_urls,
12     const url::Origin& frame_origin)
13     : render_frame_host_id(render_frame_host_id),
14       presentation_urls(presentation_urls),
15       frame_origin(frame_origin) {}
16 
17 PresentationRequest::~PresentationRequest() = default;
18 
19 PresentationRequest::PresentationRequest(const PresentationRequest& other) =
20     default;
21 
22 PresentationRequest& PresentationRequest::operator=(
23     const PresentationRequest& other) = default;
24 
25 }  // namespace content
26