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

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

Issue 9429039: Cleanup: Remove base::environment_vector and base::file_handle_mapping_vector to StudlyCaps. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 months 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 | Annotate | Revision Log
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 CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_
6 #define CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ 6 #define CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <cstdio>
10 #include <fcntl.h> 9 #include <fcntl.h>
11 #include <signal.h> 10 #include <signal.h>
12 11
12 #include <cstdio>
13 #include <string>
14
13 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
14 #include "chrome/browser/chromeos/process_proxy/process_output_watcher.h" 16 #include "chrome/browser/chromeos/process_proxy/process_output_watcher.h"
15 17
16 namespace base { 18 namespace base {
17 class Thread; 19 class Thread;
18 } // namespace base 20 } // namespace base
19 21
20 22
21 // Proxy to a single ChromeOS process. 23 // Proxy to a single ChromeOS process.
22 // This is refcounted. Note that output watcher, when it gets triggered owns a 24 // This is refcounted. Note that output watcher, when it gets triggered owns a
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 84
83 bool watcher_started_; 85 bool watcher_started_;
84 86
85 int pt_pair_[2]; 87 int pt_pair_[2];
86 int shutdown_pipe_[2]; 88 int shutdown_pipe_[2];
87 89
88 DISALLOW_COPY_AND_ASSIGN(ProcessProxy); 90 DISALLOW_COPY_AND_ASSIGN(ProcessProxy);
89 }; 91 };
90 92
91 #endif // CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_ 93 #endif // CHROME_BROWSER_CHROMEOS_PROCESS_PROXY_PROCESS_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/app/nacl_fork_delegate_linux.cc ('k') | chrome/browser/chromeos/process_proxy/process_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698