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

Side by Side Diff: base/file_descriptor_posix.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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
« no previous file with comments | « WATCHLISTS ('k') | build/all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 BASE_FILE_DESCRIPTOR_POSIX_H_ 5 #ifndef BASE_FILE_DESCRIPTOR_POSIX_H_
6 #define BASE_FILE_DESCRIPTOR_POSIX_H_ 6 #define BASE_FILE_DESCRIPTOR_POSIX_H_
7 7
8 namespace base { 8 namespace base {
9 9
10 // ----------------------------------------------------------------------------- 10 // -----------------------------------------------------------------------------
11 // We introduct a special structure for file descriptors in order that we are 11 // We introduct a special structure for file descriptors in order that we are
12 // able to use template specialisation to special-case their handling. 12 // able to use template specialisation to special-case their handling.
13 // 13 //
14 // WARNING: (Chromium only) There are subtleties to consider if serialising 14 // WARNING: (Chromium only) There are subtleties to consider if serialising
15 // these objects over IPC. See comments in chrome/common/ipc_message_utils.h 15 // these objects over IPC. See comments in ipc/ipc_message_utils.h
16 // above the template specialisation for this structure. 16 // above the template specialisation for this structure.
17 // ----------------------------------------------------------------------------- 17 // -----------------------------------------------------------------------------
18 struct FileDescriptor { 18 struct FileDescriptor {
19 FileDescriptor() 19 FileDescriptor()
20 : fd(-1), 20 : fd(-1),
21 auto_close(false) { } 21 auto_close(false) { }
22 22
23 FileDescriptor(int ifd, bool iauto_close) 23 FileDescriptor(int ifd, bool iauto_close)
24 : fd(ifd), 24 : fd(ifd),
25 auto_close(iauto_close) { } 25 auto_close(iauto_close) { }
26 26
27 int fd; 27 int fd;
28 // If true, this file descriptor should be closed after it has been used. For 28 // If true, this file descriptor should be closed after it has been used. For
29 // example an IPC system might interpret this flag as indicating that the 29 // example an IPC system might interpret this flag as indicating that the
30 // file descriptor it has been given should be closed after use. 30 // file descriptor it has been given should be closed after use.
31 bool auto_close; 31 bool auto_close;
32 }; 32 };
33 33
34 } // namespace base 34 } // namespace base
35 35
36 #endif // BASE_FILE_DESCRIPTOR_POSIX_H_ 36 #endif // BASE_FILE_DESCRIPTOR_POSIX_H_
OLDNEW
« no previous file with comments | « WATCHLISTS ('k') | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698