| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 */ | |
| 5 | |
| 6 | 4 |
| 7 /* XRay -- a simple profiler for Native Client */ | 5 /* XRay -- a simple profiler for Native Client */ |
| 8 | 6 |
| 9 /* This header file is the private internal interface. */ | 7 /* This header file is the private internal interface. */ |
| 10 | 8 |
| 11 #ifndef LIBRARIES_XRAY_XRAY_PRIV_H_ | 9 #ifndef LIBRARIES_XRAY_XRAY_PRIV_H_ |
| 12 #define LIBRARIES_XRAY_XRAY_PRIV_H_ | 10 #define LIBRARIES_XRAY_XRAY_PRIV_H_ |
| 13 | 11 |
| 14 #include <stdbool.h> | 12 #include <stdbool.h> |
| 15 #include <stdint.h> | 13 #include <stdint.h> |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 #endif | 197 #endif |
| 200 | 198 |
| 201 | 199 |
| 202 #endif /* defined(XRAY) */ | 200 #endif /* defined(XRAY) */ |
| 203 | 201 |
| 204 #ifdef __cplusplus | 202 #ifdef __cplusplus |
| 205 } | 203 } |
| 206 #endif | 204 #endif |
| 207 | 205 |
| 208 #endif /* LIBRARIES_XRAY_XRAY_PRIV_H_ */ | 206 #endif /* LIBRARIES_XRAY_XRAY_PRIV_H_ */ |
| OLD | NEW |