Remove some dead code in WebURLLoaderMockFactory.
[chromium-blink-merge.git] / content / common / pepper_renderer_instance_data.cc
blob6b0446be2c7d018fef5ed7a101076b4cbe8eeb07
1 // Copyright (c) 2012 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.
5 #include "content/common/pepper_renderer_instance_data.h"
7 namespace content {
9 PepperRendererInstanceData::PepperRendererInstanceData()
10 : render_process_id(0), render_frame_id(0) {
13 PepperRendererInstanceData::PepperRendererInstanceData(int render_process,
14 int render_frame,
15 const GURL& document,
16 const GURL& plugin)
17 : render_process_id(render_process),
18 render_frame_id(render_frame),
19 document_url(document),
20 plugin_url(plugin) {
23 PepperRendererInstanceData::~PepperRendererInstanceData() {
26 } // namespace content