| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/child/npobject_stub.h" | 5 #include "content/child/npapi/npobject_stub.h" |
| 6 | 6 |
| 7 #include "content/child/np_channel_base.h" | 7 #include "content/child/npapi/np_channel_base.h" |
| 8 #include "content/child/npapi/npobject_util.h" |
| 8 #include "content/child/npapi/plugin_host.h" | 9 #include "content/child/npapi/plugin_host.h" |
| 9 #include "content/child/npobject_util.h" | |
| 10 #include "content/child/plugin_messages.h" | 10 #include "content/child/plugin_messages.h" |
| 11 #include "content/public/common/content_client.h" | 11 #include "content/public/common/content_client.h" |
| 12 #include "content/public/common/content_switches.h" | 12 #include "content/public/common/content_switches.h" |
| 13 #include "third_party/WebKit/public/web/WebBindings.h" | 13 #include "third_party/WebKit/public/web/WebBindings.h" |
| 14 #include "third_party/npapi/bindings/npapi.h" | 14 #include "third_party/npapi/bindings/npapi.h" |
| 15 #include "third_party/npapi/bindings/npruntime.h" | 15 #include "third_party/npapi/bindings/npruntime.h" |
| 16 | 16 |
| 17 #if defined(OS_WIN) | 17 #if defined(OS_WIN) |
| 18 #include "base/command_line.h" | 18 #include "base/command_line.h" |
| 19 #include "content/common/plugin_constants_win.h" | 19 #include "content/common/plugin_constants_win.h" |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 channel_.get(), | 415 channel_.get(), |
| 416 &result_param, | 416 &result_param, |
| 417 true, | 417 true, |
| 418 render_view_id_, | 418 render_view_id_, |
| 419 page_url_); | 419 page_url_); |
| 420 NPObjectMsg_Evaluate::WriteReplyParams(reply_msg, result_param, return_value); | 420 NPObjectMsg_Evaluate::WriteReplyParams(reply_msg, result_param, return_value); |
| 421 channel_->Send(reply_msg); | 421 channel_->Send(reply_msg); |
| 422 } | 422 } |
| 423 | 423 |
| 424 } // namespace content | 424 } // namespace content |
| OLD | NEW |