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

Unified Diff: chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc

Issue 105553005: Make PepperWebPlugin not use RenderViews. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments 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: chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc (revision 242033)
+++ chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc (working copy)
@@ -42,10 +42,10 @@
PepperIsolatedFileSystemMessageFilter::Create(
PP_Instance instance, content::BrowserPpapiHost* host) {
int render_process_id;
- int unused_render_view_id;
- if (!host->GetRenderViewIDsForInstance(instance,
- &render_process_id,
- &unused_render_view_id)) {
+ int unused_render_frame_id;
+ if (!host->GetRenderFrameIDsForInstance(instance,
+ &render_process_id,
+ &unused_render_frame_id)) {
return NULL;
}
return new PepperIsolatedFileSystemMessageFilter(

Powered by Google App Engine
This is Rietveld 408576698