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/pepper/pepper_plugin_instance_impl.h" | 5 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback_helpers.h" | 8 #include "base/callback_helpers.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/debug/trace_event.h" | 10 #include "base/debug/trace_event.h" |
(...skipping 3191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3202 if (lock_target_.get()) { | 3202 if (lock_target_.get()) { |
3203 GetMouseLockDispatcher()->OnLockTargetDestroyed(lock_target_.get()); | 3203 GetMouseLockDispatcher()->OnLockTargetDestroyed(lock_target_.get()); |
3204 lock_target_.reset(); | 3204 lock_target_.reset(); |
3205 } | 3205 } |
3206 } | 3206 } |
3207 | 3207 |
3208 void PepperPluginInstanceImpl::DidDataFromWebURLResponse( | 3208 void PepperPluginInstanceImpl::DidDataFromWebURLResponse( |
3209 const blink::WebURLResponse& response, | 3209 const blink::WebURLResponse& response, |
3210 int pending_host_id, | 3210 int pending_host_id, |
3211 const ppapi::URLResponseInfoData& data) { | 3211 const ppapi::URLResponseInfoData& data) { |
| 3212 if (is_deleted_) |
| 3213 return; |
| 3214 |
3212 RendererPpapiHostImpl* host_impl = module_->renderer_ppapi_host(); | 3215 RendererPpapiHostImpl* host_impl = module_->renderer_ppapi_host(); |
3213 | 3216 |
3214 if (host_impl->in_process_router()) { | 3217 if (host_impl->in_process_router()) { |
3215 // Running in-process, we can just create the resource and call the | 3218 // Running in-process, we can just create the resource and call the |
3216 // PPP_Instance function directly. | 3219 // PPP_Instance function directly. |
3217 scoped_refptr<ppapi::proxy::URLLoaderResource> loader_resource( | 3220 scoped_refptr<ppapi::proxy::URLLoaderResource> loader_resource( |
3218 new ppapi::proxy::URLLoaderResource( | 3221 new ppapi::proxy::URLLoaderResource( |
3219 host_impl->in_process_router()->GetPluginConnection(pp_instance()), | 3222 host_impl->in_process_router()->GetPluginConnection(pp_instance()), |
3220 pp_instance(), | 3223 pp_instance(), |
3221 pending_host_id, | 3224 pending_host_id, |
(...skipping 11 matching lines...) Expand all Loading... |
3233 // Running out-of-process. Initiate an IPC call to notify the plugin | 3236 // Running out-of-process. Initiate an IPC call to notify the plugin |
3234 // process. | 3237 // process. |
3235 ppapi::proxy::HostDispatcher* dispatcher = | 3238 ppapi::proxy::HostDispatcher* dispatcher = |
3236 ppapi::proxy::HostDispatcher::GetForInstance(pp_instance()); | 3239 ppapi::proxy::HostDispatcher::GetForInstance(pp_instance()); |
3237 dispatcher->Send(new PpapiMsg_PPPInstance_HandleDocumentLoad( | 3240 dispatcher->Send(new PpapiMsg_PPPInstance_HandleDocumentLoad( |
3238 ppapi::API_ID_PPP_INSTANCE, pp_instance(), pending_host_id, data)); | 3241 ppapi::API_ID_PPP_INSTANCE, pp_instance(), pending_host_id, data)); |
3239 } | 3242 } |
3240 } | 3243 } |
3241 | 3244 |
3242 } // namespace content | 3245 } // namespace content |
OLD | NEW |