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

Side by Side Diff: minidump/minidump_extensions.h

Issue 1379873005: win: Write memory map info as MINIDUMP_MEMORY_INFO[_LIST] (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@save-peb-more-2
Patch Set: headers Created 5 years, 2 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 | « minidump/minidump.gyp ('k') | minidump/minidump_file_writer.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 //! 70 //!
71 //! \sa SystemInfoStream 71 //! \sa SystemInfoStream
72 kMinidumpStreamTypeSystemInfo = SystemInfoStream, 72 kMinidumpStreamTypeSystemInfo = SystemInfoStream,
73 73
74 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2, 74 //! \brief The stream type for MINIDUMP_MISC_INFO, MINIDUMP_MISC_INFO_2,
75 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4. 75 //! MINIDUMP_MISC_INFO_3, and MINIDUMP_MISC_INFO_4.
76 //! 76 //!
77 //! \sa MiscInfoStream 77 //! \sa MiscInfoStream
78 kMinidumpStreamTypeMiscInfo = MiscInfoStream, 78 kMinidumpStreamTypeMiscInfo = MiscInfoStream,
79 79
80 //! \brief The stream type for MINIDUMP_MEMORY_INFO_LIST.
81 //!
82 //! \sa MemoryInfoListStream
83 kMinidumpStreamTypeMemoryInfoList = MemoryInfoListStream,
84
80 // 0x4350 = "CP" 85 // 0x4350 = "CP"
81 86
82 //! \brief The stream type for MinidumpCrashpadInfo. 87 //! \brief The stream type for MinidumpCrashpadInfo.
83 kMinidumpStreamTypeCrashpadInfo = 0x43500001, 88 kMinidumpStreamTypeCrashpadInfo = 0x43500001,
84 }; 89 };
85 90
86 //! \brief A variable-length UTF-8-encoded string carried within a minidump 91 //! \brief A variable-length UTF-8-encoded string carried within a minidump
87 //! file. 92 //! file.
88 //! 93 //!
89 //! \sa MINIDUMP_STRING 94 //! \sa MINIDUMP_STRING
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 #if defined(COMPILER_MSVC) 422 #if defined(COMPILER_MSVC)
418 #pragma pack(pop) 423 #pragma pack(pop)
419 #endif // COMPILER_MSVC 424 #endif // COMPILER_MSVC
420 #undef PACKED 425 #undef PACKED
421 426
422 MSVC_POP_WARNING(); // C4200 427 MSVC_POP_WARNING(); // C4200
423 428
424 } // namespace crashpad 429 } // namespace crashpad
425 430
426 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_ 431 #endif // CRASHPAD_MINIDUMP_MINIDUMP_EXTENSIONS_H_
OLDNEW
« no previous file with comments | « minidump/minidump.gyp ('k') | minidump/minidump_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698