| OLD | NEW |
| 1 // Copyright 2015 The Crashpad Authors. All rights reserved. | 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 CrashpadInfoClientOptions(); | 55 CrashpadInfoClientOptions(); |
| 56 | 56 |
| 57 //! \sa CrashpadInfo::set_crashpad_handler_behavior() | 57 //! \sa CrashpadInfo::set_crashpad_handler_behavior() |
| 58 TriState crashpad_handler_behavior; | 58 TriState crashpad_handler_behavior; |
| 59 | 59 |
| 60 //! \sa CrashpadInfo::set_system_crash_reporter_forwarding() | 60 //! \sa CrashpadInfo::set_system_crash_reporter_forwarding() |
| 61 TriState system_crash_reporter_forwarding; | 61 TriState system_crash_reporter_forwarding; |
| 62 | 62 |
| 63 //! \sa CrashpadInfo::set_gather_indirectly_referenced_memory() | 63 //! \sa CrashpadInfo::set_gather_indirectly_referenced_memory() |
| 64 TriState gather_indirectly_referenced_memory; | 64 TriState gather_indirectly_referenced_memory; |
| 65 |
| 66 //! \sa CrashpadInfo::set_gather_indirectly_referenced_memory() |
| 67 uint32_t indirectly_referenced_memory_cap; |
| 65 }; | 68 }; |
| 66 | 69 |
| 67 } // namespace crashpad | 70 } // namespace crashpad |
| 68 | 71 |
| 69 #endif // CRASHPAD_SNAPSHOT_CRASHPAD_INFO_CLIENT_OPTIONS_H_ | 72 #endif // CRASHPAD_SNAPSHOT_CRASHPAD_INFO_CLIENT_OPTIONS_H_ |
| OLD | NEW |