Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: content/common/pepper_renderer_instance_data.cc

Issue 1132093003: Add metrics to record TCP/UDP connections made from Flash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/pepper_renderer_instance_data.h" 5 #include "content/common/pepper_renderer_instance_data.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 PepperRendererInstanceData::PepperRendererInstanceData() 9 PepperRendererInstanceData::PepperRendererInstanceData()
10 : render_process_id(0), render_frame_id(0) { 10 : render_process_id(0),
11 render_frame_id(0),
12 is_potentially_secure_plugin_context(false) {
11 } 13 }
12 14
13 PepperRendererInstanceData::PepperRendererInstanceData(int render_process, 15 PepperRendererInstanceData::PepperRendererInstanceData(int render_process,
14 int render_frame, 16 int render_frame,
15 const GURL& document, 17 const GURL& document,
16 const GURL& plugin) 18 const GURL& plugin,
19 bool secure)
17 : render_process_id(render_process), 20 : render_process_id(render_process),
18 render_frame_id(render_frame), 21 render_frame_id(render_frame),
19 document_url(document), 22 document_url(document),
20 plugin_url(plugin) { 23 plugin_url(plugin),
24 is_potentially_secure_plugin_context(secure) {
21 } 25 }
22 26
23 PepperRendererInstanceData::~PepperRendererInstanceData() { 27 PepperRendererInstanceData::~PepperRendererInstanceData() {
24 } 28 }
25 29
26 } // namespace content 30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698