Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: client/crashpad_info.h

Issue 1355503005: win: Make reading CrashpadInfo work across bitness (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixes Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | client/crashpad_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 // Fields present in version 1: 115 // Fields present in version 1:
116 uint32_t signature_; // kSignature 116 uint32_t signature_; // kSignature
117 uint32_t size_; // The size of the entire CrashpadInfo structure. 117 uint32_t size_; // The size of the entire CrashpadInfo structure.
118 uint32_t version_; // kVersion 118 uint32_t version_; // kVersion
119 TriState crashpad_handler_behavior_; 119 TriState crashpad_handler_behavior_;
120 TriState system_crash_reporter_forwarding_; 120 TriState system_crash_reporter_forwarding_;
121 uint16_t padding_0_; 121 uint16_t padding_0_;
122 SimpleStringDictionary* simple_annotations_; // weak 122 SimpleStringDictionary* simple_annotations_; // weak
123 123
124 #if !defined(NDEBUG) && defined(OS_WIN)
125 uint32_t invalid_read_detection_;
126 #endif
127
124 #if defined(__clang__) 128 #if defined(__clang__)
125 #pragma clang diagnostic pop 129 #pragma clang diagnostic pop
126 #endif 130 #endif
127 131
128 DISALLOW_COPY_AND_ASSIGN(CrashpadInfo); 132 DISALLOW_COPY_AND_ASSIGN(CrashpadInfo);
129 }; 133 };
130 134
131 } // namespace crashpad 135 } // namespace crashpad
132 136
133 #endif // CRASHPAD_CLIENT_CRASHPAD_INFO_H_ 137 #endif // CRASHPAD_CLIENT_CRASHPAD_INFO_H_
OLDNEW
« no previous file with comments | « no previous file | client/crashpad_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698