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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/common/pepper_renderer_instance_data.cc
diff --git a/content/common/pepper_renderer_instance_data.cc b/content/common/pepper_renderer_instance_data.cc
index 6b0446be2c7d018fef5ed7a101076b4cbe8eeb07..8ec9320e891cddb953480e9694e662d53acead7c 100644
--- a/content/common/pepper_renderer_instance_data.cc
+++ b/content/common/pepper_renderer_instance_data.cc
@@ -7,17 +7,21 @@
namespace content {
PepperRendererInstanceData::PepperRendererInstanceData()
- : render_process_id(0), render_frame_id(0) {
+ : render_process_id(0),
+ render_frame_id(0),
+ is_potentially_secure_plugin_context(false) {
}
PepperRendererInstanceData::PepperRendererInstanceData(int render_process,
int render_frame,
const GURL& document,
- const GURL& plugin)
+ const GURL& plugin,
+ bool secure)
: render_process_id(render_process),
render_frame_id(render_frame),
document_url(document),
- plugin_url(plugin) {
+ plugin_url(plugin),
+ is_potentially_secure_plugin_context(secure) {
}
PepperRendererInstanceData::~PepperRendererInstanceData() {

Powered by Google App Engine
This is Rietveld 408576698