OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_ZYGOTE_ZYGOTE_LIBC_OVERRIDE_LINUX_H_ | |
Sergey Ulanov
2012/07/10 22:42:04
not sure if this is the best location for this fil
Nick Bray (chromium)
2012/07/11 00:06:11
Done.
| |
6 #define CONTENT_ZYGOTE_ZYGOTE_LIBC_OVERRIDE_LINUX_H_ | |
7 | |
8 namespace content { | |
9 | |
10 #if !defined(CHROMIUM_SELINUX) | |
11 | |
12 // Used to control if calls to libc are intercepted or not. | |
13 extern bool g_am_zygote_or_renderer; | |
Sergey Ulanov
2012/07/10 22:42:04
instead of exposing this variable it's better to h
Nick Bray (chromium)
2012/07/11 00:06:11
Done.
| |
14 | |
15 #endif | |
Sergey Ulanov
2012/07/10 22:42:04
// !defined (CHROMIUM_SELINUX)
Nick Bray (chromium)
2012/07/11 00:06:11
Done.
| |
16 | |
17 } | |
Sergey Ulanov
2012/07/10 22:42:04
// namespace content
Nick Bray (chromium)
2012/07/11 00:06:11
Done.
| |
18 | |
19 #endif // CONTENT_ZYGOTE_ZYGOTE_LIBC_OVERRIDE_LINUX_H_ | |
OLD | NEW |