Chromium Code Reviews| Index: content/renderer/pepper/pepper_browser_connection.cc |
| diff --git a/content/renderer/pepper/pepper_browser_connection.cc b/content/renderer/pepper/pepper_browser_connection.cc |
| index 892506ede2f22526f71e64034407459c69121ee6..9920b072b6d237794912a714168d7f05e6330664 100644 |
| --- a/content/renderer/pepper/pepper_browser_connection.cc |
| +++ b/content/renderer/pepper/pepper_browser_connection.cc |
| @@ -42,11 +42,13 @@ void PepperBrowserConnection::DidCreateInProcessInstance( |
| int render_frame_id, |
| const GURL& document_url, |
| const GURL& plugin_url) { |
| + // We don't need to know if it's a privileged context for in-process plugins. |
| + bool is_privileged_context = false; |
|
Ryan Sleevi
2015/05/12 22:56:06
Why is this?
raymes
2015/05/13 00:07:19
In process plugins are deprecated and the only in-
|
| Send(new ViewHostMsg_DidCreateInProcessInstance( |
| instance, |
| // Browser provides the render process id. |
| - PepperRendererInstanceData( |
| - 0, render_frame_id, document_url, plugin_url))); |
| + PepperRendererInstanceData(0, render_frame_id, document_url, plugin_url, |
| + is_privileged_context))); |
| } |
| void PepperBrowserConnection::DidDeleteInProcessInstance(PP_Instance instance) { |