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

Unified Diff: content/renderer/render_view_impl.cc

Issue 10214007: Add an IPC channel between the NaCl loader process and the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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/renderer/render_view_impl.cc
===================================================================
--- content/renderer/render_view_impl.cc (revision 136022)
+++ content/renderer/render_view_impl.cc (working copy)
@@ -3621,6 +3621,17 @@
#endif
}
+void RenderViewImpl::CreatePepperHostDispatcher(
+ const FilePath& plugin_path,
+ int plugin_child_id,
+ base::ProcessHandle plugin_process_handle,
+ const IPC::ChannelHandle& channel_handle) {
+ pepper_delegate_.CreatePepperHostDispatcher(plugin_path,
+ plugin_child_id,
+ plugin_process_handle,
+ channel_handle);
+}
+
void RenderViewImpl::EvaluateScript(const string16& frame_xpath,
const string16& jscript,
int id,

Powered by Google App Engine
This is Rietveld 408576698