[email protected] | e643e57c | 2012-01-28 02:26:09 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | ef91627 | 2009-07-08 21:40:55 | [diff] [blame] | 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 CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ | ||||
6 | #define CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ | ||||
7 | |||||
avi | 2729e44 | 2015-12-26 05:27:45 | [diff] [blame] | 8 | #include "build/build_config.h" |
[email protected] | 38b80bba | 2012-06-29 17:54:13 | [diff] [blame] | 9 | |
[email protected] | ef91627 | 2009-07-08 21:40:55 | [diff] [blame] | 10 | namespace child_process_logging { |
11 | |||||
[email protected] | 27b38d6 | 2013-08-14 18:12:11 | [diff] [blame] | 12 | #if defined(OS_WIN) |
[email protected] | 27b38d6 | 2013-08-14 18:12:11 | [diff] [blame] | 13 | // Sets up the base/debug/crash_logging.h mechanism. |
14 | void Init(); | ||||
[email protected] | 42d46a8 | 2013-09-25 14:47:02 | [diff] [blame] | 15 | #endif // defined(OS_WIN) |
[email protected] | 27b38d6 | 2013-08-14 18:12:11 | [diff] [blame] | 16 | |
[email protected] | 4f05288 | 2013-08-16 21:05:12 | [diff] [blame] | 17 | } // namespace child_process_logging |
[email protected] | 27b38d6 | 2013-08-14 18:12:11 | [diff] [blame] | 18 | |
[email protected] | ef91627 | 2009-07-08 21:40:55 | [diff] [blame] | 19 | #endif // CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ |