Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 IOS_CHROME_BROWSER_CRASH_REPORT_CRASH_KEYS_H_ | |
| 6 #define IOS_CHROME_BROWSER_CRASH_REPORT_CRASH_KEYS_H_ | |
| 7 | |
| 8 #include <cstddef> | |
|
Mark Mentovai
2015/08/17 18:55:01
<stddef.h>
sdefresne
2015/08/18 12:47:40
Done.
| |
| 9 | |
| 10 // Registers all of the potential crash keys that can be sent to the crash | |
| 11 // reporting server. Returns the size of the union of all keys. | |
| 12 size_t RegisterChromeIOSCrashKeys(); | |
| 13 | |
| 14 #endif // IOS_CHROME_BROWSER_CRASH_REPORT_CRASH_KEYS_H_ | |
| OLD | NEW |