OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common/npobject_stub.h" | 5 #include "content/common/npobject_stub.h" |
6 | 6 |
7 #include "content/common/content_client.h" | 7 #include "content/common/content_client.h" |
| 8 #include "content/common/np_channel_base.h" |
8 #include "content/common/npobject_util.h" | 9 #include "content/common/npobject_util.h" |
9 #include "content/common/plugin_messages.h" | 10 #include "content/common/plugin_messages.h" |
10 #include "content/plugin/plugin_thread.h" | |
11 #include "third_party/npapi/bindings/npapi.h" | 11 #include "third_party/npapi/bindings/npapi.h" |
12 #include "third_party/npapi/bindings/npruntime.h" | 12 #include "third_party/npapi/bindings/npruntime.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" |
14 #include "webkit/plugins/npapi/plugin_constants_win.h" | 14 #include "webkit/plugins/npapi/plugin_constants_win.h" |
15 | 15 |
16 class NPChannelBase; | |
17 | |
18 using WebKit::WebBindings; | 16 using WebKit::WebBindings; |
19 | 17 |
20 NPObjectStub::NPObjectStub( | 18 NPObjectStub::NPObjectStub( |
21 NPObject* npobject, | 19 NPObject* npobject, |
22 NPChannelBase* channel, | 20 NPChannelBase* channel, |
23 int route_id, | 21 int route_id, |
24 gfx::NativeViewId containing_window, | 22 gfx::NativeViewId containing_window, |
25 const GURL& page_url) | 23 const GURL& page_url) |
26 : npobject_(npobject), | 24 : npobject_(npobject), |
27 channel_(channel), | 25 channel_(channel), |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 property, channel_, &property_var, containing_window_, page_url_)) { | 234 property, channel_, &property_var, containing_window_, page_url_)) { |
237 NPObjectMsg_SetProperty::WriteReplyParams(reply_msg, result); | 235 NPObjectMsg_SetProperty::WriteReplyParams(reply_msg, result); |
238 channel_->Send(reply_msg); | 236 channel_->Send(reply_msg); |
239 return; | 237 return; |
240 } | 238 } |
241 | 239 |
242 if (IsPluginProcess()) { | 240 if (IsPluginProcess()) { |
243 if (npobject_->_class->setProperty) { | 241 if (npobject_->_class->setProperty) { |
244 #if defined(OS_WIN) | 242 #if defined(OS_WIN) |
245 static std::wstring filename = StringToLowerASCII( | 243 static std::wstring filename = StringToLowerASCII( |
246 PluginThread::current()->plugin_path().BaseName().value()); | 244 GetPluginPath().BaseName().value()); |
247 static NPIdentifier fullscreen = | 245 static NPIdentifier fullscreen = |
248 WebBindings::getStringIdentifier("fullScreen"); | 246 WebBindings::getStringIdentifier("fullScreen"); |
249 if (filename == webkit::npapi::kNewWMPPlugin && id == fullscreen) { | 247 if (filename == webkit::npapi::kNewWMPPlugin && id == fullscreen) { |
250 // Workaround for bug 15985, which is if Flash causes WMP to go | 248 // Workaround for bug 15985, which is if Flash causes WMP to go |
251 // full screen a deadlock can occur when WMP calls SetFocus. | 249 // full screen a deadlock can occur when WMP calls SetFocus. |
252 NPObjectMsg_SetProperty::WriteReplyParams(reply_msg, true); | 250 NPObjectMsg_SetProperty::WriteReplyParams(reply_msg, true); |
253 Send(reply_msg); | 251 Send(reply_msg); |
254 reply_msg = NULL; | 252 reply_msg = NULL; |
255 } | 253 } |
256 #endif | 254 #endif |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 | 383 |
386 bool return_value = WebBindings::evaluateHelper(0, popups_allowed, npobject_, | 384 bool return_value = WebBindings::evaluateHelper(0, popups_allowed, npobject_, |
387 &script_string, &result_var); | 385 &script_string, &result_var); |
388 | 386 |
389 NPVariant_Param result_param; | 387 NPVariant_Param result_param; |
390 CreateNPVariantParam( | 388 CreateNPVariantParam( |
391 result_var, channel_, &result_param, true, containing_window_, page_url_); | 389 result_var, channel_, &result_param, true, containing_window_, page_url_); |
392 NPObjectMsg_Evaluate::WriteReplyParams(reply_msg, result_param, return_value); | 390 NPObjectMsg_Evaluate::WriteReplyParams(reply_msg, result_param, return_value); |
393 channel_->Send(reply_msg); | 391 channel_->Send(reply_msg); |
394 } | 392 } |
OLD | NEW |