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 #ifndef CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ | 5 #ifndef CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ |
6 #define CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ | 6 #define CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ |
7 | 7 |
8 #include <fcntl.h> | 8 #include <fcntl.h> |
9 #include <signal.h> | 9 #include <signal.h> |
10 | 10 |
11 #include <cstdio> | 11 #include <cstdio> |
12 #include <string> | 12 #include <string> |
13 | 13 |
| 14 #include "base/macros.h" |
14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
15 #include "chromeos/process_proxy/process_output_watcher.h" | 16 #include "chromeos/process_proxy/process_output_watcher.h" |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 class SingleThreadTaskRunner; | 19 class SingleThreadTaskRunner; |
19 class TaskRunner; | 20 class TaskRunner; |
20 } // namespace base | 21 } // namespace base |
21 | 22 |
22 namespace chromeos { | 23 namespace chromeos { |
23 class ProcessOutputWatcher; | 24 class ProcessOutputWatcher; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 scoped_ptr<ProcessOutputWatcher> output_watcher_; | 90 scoped_ptr<ProcessOutputWatcher> output_watcher_; |
90 | 91 |
91 int pt_pair_[2]; | 92 int pt_pair_[2]; |
92 | 93 |
93 DISALLOW_COPY_AND_ASSIGN(ProcessProxy); | 94 DISALLOW_COPY_AND_ASSIGN(ProcessProxy); |
94 }; | 95 }; |
95 | 96 |
96 } // namespace chromeos | 97 } // namespace chromeos |
97 | 98 |
98 #endif // CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ | 99 #endif // CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ |
OLD | NEW |