Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Side by Side Diff: chromeos/process_proxy/process_proxy.h

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chromeos/process_proxy/process_output_watcher_unittest.cc ('k') | chromeos/process_proxy/process_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698