blob: 44e764d14d9830aacde0d852d35760544256971c [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2012 The Chromium Authors
[email protected]83d12c8d2012-12-10 19:28:462// 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/common/pepper_renderer_instance_data.h"
6
7namespace content {
8
9PepperRendererInstanceData::PepperRendererInstanceData()
raymes568fbca2015-05-14 19:24:2110 : render_process_id(0),
11 render_frame_id(0),
12 is_potentially_secure_plugin_context(false) {
[email protected]83d12c8d2012-12-10 19:28:4613}
14
tommyclic7634dec2015-02-19 01:46:2015PepperRendererInstanceData::PepperRendererInstanceData(int render_process,
16 int render_frame,
17 const GURL& document,
raymes568fbca2015-05-14 19:24:2118 const GURL& plugin,
19 bool secure)
[email protected]83d12c8d2012-12-10 19:28:4620 : render_process_id(render_process),
[email protected]6dd625e2013-12-20 17:03:0721 render_frame_id(render_frame),
[email protected]83d12c8d2012-12-10 19:28:4622 document_url(document),
raymes568fbca2015-05-14 19:24:2123 plugin_url(plugin),
24 is_potentially_secure_plugin_context(secure) {
[email protected]83d12c8d2012-12-10 19:28:4625}
26
27PepperRendererInstanceData::~PepperRendererInstanceData() {
28}
29
30} // namespace content