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/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/browser_plugin_messages.h" | 8 #include "content/common/browser_plugin_messages.h" |
9 #include "content/common/child_process.h" | 9 #include "content/common/child_process.h" |
10 #include "content/renderer/browser_plugin/browser_plugin_channel_manager.h" | 10 #include "content/renderer/browser_plugin/old/browser_plugin_channel_manager.h" |
11 #include "content/renderer/browser_plugin/browser_plugin_var_serialization_rules
.h" | 11 #include "content/renderer/browser_plugin/old/browser_plugin_var_serialization_r
ules.h" |
12 #include "content/renderer/render_thread_impl.h" | 12 #include "content/renderer/render_thread_impl.h" |
13 #include "content/renderer/render_view_impl.h" | 13 #include "content/renderer/render_view_impl.h" |
14 #include "ppapi/c/pp_bool.h" | 14 #include "ppapi/c/pp_bool.h" |
15 #include "ppapi/c/pp_graphics_3d.h" | 15 #include "ppapi/c/pp_graphics_3d.h" |
16 #include "ppapi/proxy/ppapi_command_buffer_proxy.h" | 16 #include "ppapi/proxy/ppapi_command_buffer_proxy.h" |
17 #include "ppapi/proxy/ppapi_messages.h" | 17 #include "ppapi/proxy/ppapi_messages.h" |
18 #include "ppapi/shared_impl/api_id.h" | 18 #include "ppapi/shared_impl/api_id.h" |
19 #include "ppapi/shared_impl/ppapi_globals.h" | 19 #include "ppapi/shared_impl/ppapi_globals.h" |
20 #include "ppapi/shared_impl/var.h" | 20 #include "ppapi/shared_impl/var.h" |
21 #include "webkit/plugins/ppapi/event_conversion.h" | 21 #include "webkit/plugins/ppapi/event_conversion.h" |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 render_view->GetWebView()->loseCompositorContext(1); | 297 render_view->GetWebView()->loseCompositorContext(1); |
298 } | 298 } |
299 | 299 |
300 void GuestToEmbedderChannel::OnGuestReady(PP_Instance instance, | 300 void GuestToEmbedderChannel::OnGuestReady(PP_Instance instance, |
301 int embedder_container_id) { | 301 int embedder_container_id) { |
302 RenderThreadImpl::current()->browser_plugin_channel_manager()-> | 302 RenderThreadImpl::current()->browser_plugin_channel_manager()-> |
303 GuestReady(instance, embedder_channel_name(), embedder_container_id); | 303 GuestReady(instance, embedder_channel_name(), embedder_container_id); |
304 } | 304 } |
305 | 305 |
306 } // namespace content | 306 } // namespace content |
OLD | NEW |