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 "chrome/browser/extensions/api/messaging/native_message_process_host.h" | 5 #include "chrome/browser/extensions/api/messaging/native_message_process_host.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/process/kill.h" | 10 #include "base/process/kill.h" |
11 #include "base/threading/sequenced_worker_pool.h" | 11 #include "base/threading/sequenced_worker_pool.h" |
12 #include "chrome/browser/extensions/api/messaging/native_messaging_host_manifest
.h" | 12 #include "chrome/browser/extensions/api/messaging/native_messaging_host_manifest
.h" |
13 #include "chrome/browser/extensions/api/messaging/native_process_launcher.h" | 13 #include "chrome/browser/extensions/api/messaging/native_process_launcher.h" |
14 #include "chrome/common/chrome_version_info.h" | |
15 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
16 #include "extensions/common/constants.h" | 15 #include "extensions/common/constants.h" |
17 #include "extensions/common/features/feature.h" | 16 #include "extensions/common/features/feature.h" |
18 #include "net/base/file_stream.h" | 17 #include "net/base/file_stream.h" |
19 #include "net/base/io_buffer.h" | 18 #include "net/base/io_buffer.h" |
20 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
21 #include "net/base/net_util.h" | 20 #include "net/base/net_util.h" |
22 #include "url/gurl.h" | 21 #include "url/gurl.h" |
23 | 22 |
24 namespace { | 23 namespace { |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 | 356 |
358 if (!closed_) { | 357 if (!closed_) { |
359 closed_ = true; | 358 closed_ = true; |
360 read_stream_.reset(); | 359 read_stream_.reset(); |
361 write_stream_.reset(); | 360 write_stream_.reset(); |
362 client_->CloseChannel(error_message); | 361 client_->CloseChannel(error_message); |
363 } | 362 } |
364 } | 363 } |
365 | 364 |
366 } // namespace extensions | 365 } // namespace extensions |
OLD | NEW |