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

Unified Diff: content/common/pepper_renderer_instance_data.cc

Issue 105553005: Make PepperWebPlugin not use RenderViews. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years 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
===================================================================
--- content/common/pepper_renderer_instance_data.cc (revision 241580)
+++ content/common/pepper_renderer_instance_data.cc (working copy)
@@ -8,16 +8,16 @@
PepperRendererInstanceData::PepperRendererInstanceData()
: render_process_id(0),
- render_view_id(0) {
+ render_frame_id(0) {
}
PepperRendererInstanceData::PepperRendererInstanceData(
int render_process,
- int render_view,
+ int render_frame,
yzshen1 2013/12/20 01:52:49 nit: it is nice to use the same name in the declar
jam 2013/12/20 17:00:48 yeah I agree. It looked like in this case it was d
const GURL& document,
const GURL& plugin)
: render_process_id(render_process),
- render_view_id(render_view),
+ render_frame_id(render_frame),
document_url(document),
plugin_url(plugin) {
}

Powered by Google App Engine
This is Rietveld 408576698