OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/browser_plugin/old/guest_to_embedder_channel.h" | 5 #include "content/renderer/browser_plugin/old/guest_to_embedder_channel.h" |
6 | 6 |
7 #include "base/process_util.h" | 7 #include "base/process_util.h" |
8 #include "content/common/child_process.h" | 8 #include "content/common/child_process.h" |
9 #include "content/common/old_browser_plugin_messages.h" | 9 #include "content/common/old_browser_plugin_messages.h" |
10 #include "content/renderer/browser_plugin/old/browser_plugin_channel_manager.h" | 10 #include "content/renderer/browser_plugin/old/browser_plugin_channel_manager.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
23 #include "webkit/plugins/ppapi/event_conversion.h" | 23 #include "webkit/plugins/ppapi/event_conversion.h" |
24 | 24 |
25 namespace content { | 25 namespace content { |
26 namespace old { | 26 namespace old { |
27 | 27 |
28 GuestToEmbedderChannel::GuestToEmbedderChannel( | 28 GuestToEmbedderChannel::GuestToEmbedderChannel( |
29 const std::string& embedder_channel_name, | 29 const std::string& embedder_channel_name, |
30 const IPC::ChannelHandle& embedder_channel_handle) | 30 const IPC::ChannelHandle& embedder_channel_handle) |
31 : Dispatcher(NULL), | 31 : Dispatcher(NULL, ppapi::PpapiPermissions()), |
32 embedder_channel_name_(embedder_channel_name), | 32 embedder_channel_name_(embedder_channel_name), |
33 embedder_channel_handle_(embedder_channel_handle) { | 33 embedder_channel_handle_(embedder_channel_handle) { |
34 SetSerializationRules(new BrowserPluginVarSerializationRules()); | 34 SetSerializationRules(new BrowserPluginVarSerializationRules()); |
35 } | 35 } |
36 | 36 |
37 GuestToEmbedderChannel::~GuestToEmbedderChannel() { | 37 GuestToEmbedderChannel::~GuestToEmbedderChannel() { |
38 } | 38 } |
39 | 39 |
40 bool GuestToEmbedderChannel::OnMessageReceived(const IPC::Message& message) { | 40 bool GuestToEmbedderChannel::OnMessageReceived(const IPC::Message& message) { |
41 bool handled = true; | 41 bool handled = true; |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 } | 308 } |
309 | 309 |
310 void GuestToEmbedderChannel::OnGuestReady(PP_Instance instance, | 310 void GuestToEmbedderChannel::OnGuestReady(PP_Instance instance, |
311 int embedder_container_id) { | 311 int embedder_container_id) { |
312 RenderThreadImpl::current()->browser_plugin_channel_manager()-> | 312 RenderThreadImpl::current()->browser_plugin_channel_manager()-> |
313 GuestReady(instance, embedder_channel_name(), embedder_container_id); | 313 GuestReady(instance, embedder_channel_name(), embedder_container_id); |
314 } | 314 } |
315 | 315 |
316 } // namespace old | 316 } // namespace old |
317 } // namespace content | 317 } // namespace content |
OLD | NEW |