blob: 73b67a7f323d0fbd29cc4ec2fd557eca132cf08b [file] [log] [blame]
// Copyright (c) 2012 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/common/pepper_renderer_instance_data.h"
namespace content {
PepperRendererInstanceData::PepperRendererInstanceData()
: render_process_id(0),
render_view_id(0) {
}
PepperRendererInstanceData::PepperRendererInstanceData(
int render_process,
int render_view,
const GURL& document,
const GURL& plugin)
: render_process_id(render_process),
render_view_id(render_view),
document_url(document),
plugin_url(plugin) {
}
PepperRendererInstanceData::~PepperRendererInstanceData() {
}
} // namespace content