| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 XRAY_NO_INSTRUMENT void XRayLoadMapfile( | 180 XRAY_NO_INSTRUMENT void XRayLoadMapfile( |
| 183 struct XRayTraceCapture* capture, const char* mapfilename); | 181 struct XRayTraceCapture* capture, const char* mapfilename); |
| 184 | 182 |
| 185 #endif /* defined(XRAY) */ | 183 #endif /* defined(XRAY) */ |
| 186 | 184 |
| 187 #ifdef __cplusplus | 185 #ifdef __cplusplus |
| 188 } | 186 } |
| 189 #endif | 187 #endif |
| 190 | 188 |
| 191 #endif /* LIBRARIES_XRAY_XRAY_PRIV_H_ */ | 189 #endif /* LIBRARIES_XRAY_XRAY_PRIV_H_ */ |
| OLD | NEW |