| Index: chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/native_message_process_host.cc b/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| index 749cb43c9f483c1f7936def9e097934bf50c11f0..cc0f1216060488e01842d39db3f95f37e4613b54 100644
|
| --- a/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| +++ b/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| @@ -77,13 +77,14 @@ NativeMessageProcessHost::~NativeMessageProcessHost() {
|
|
|
| // static
|
| scoped_ptr<NativeMessageProcessHost> NativeMessageProcessHost::Create(
|
| + gfx::NativeView native_view,
|
| base::WeakPtr<Client> weak_client_ui,
|
| const std::string& source_extension_id,
|
| const std::string& native_host_name,
|
| int destination_port) {
|
| return CreateWithLauncher(weak_client_ui, source_extension_id,
|
| native_host_name, destination_port,
|
| - NativeProcessLauncher::CreateDefault());
|
| + NativeProcessLauncher::CreateDefault(native_view));
|
| }
|
|
|
| // static
|
|
|