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

Side by Side Diff: client/linux/handler/microdump_extra_info.h

Issue 2087413002: Add process type to MicroDumpExtraInfo (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad/src.git@master
Patch Set: rebase Created 4 years, 5 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/linux/microdump_writer/microdump_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 2015 Google Inc. 1 // Copyright 2015 Google Inc.
2 // All rights reserved. 2 // All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
31 #define CLIENT_LINUX_HANDLER_MICRODUMP_EXTRA_INFO_H_ 31 #define CLIENT_LINUX_HANDLER_MICRODUMP_EXTRA_INFO_H_
32 32
33 namespace google_breakpad { 33 namespace google_breakpad {
34 34
35 struct MicrodumpExtraInfo { 35 struct MicrodumpExtraInfo {
36 // Strings pointed to by this struct are not copied, and are 36 // Strings pointed to by this struct are not copied, and are
37 // expected to remain valid for the lifetime of the process. 37 // expected to remain valid for the lifetime of the process.
38 const char* build_fingerprint; 38 const char* build_fingerprint;
39 const char* product_info; 39 const char* product_info;
40 const char* gpu_fingerprint; 40 const char* gpu_fingerprint;
41 const char* process_type;
41 42
42 MicrodumpExtraInfo() 43 MicrodumpExtraInfo()
43 : build_fingerprint(NULL), product_info(NULL), gpu_fingerprint(NULL) {} 44 : build_fingerprint(NULL),
45 product_info(NULL),
46 gpu_fingerprint(NULL),
47 process_type(NULL) {}
44 }; 48 };
45 49
46 } 50 }
47 51
48 #endif // CLIENT_LINUX_HANDLER_MICRODUMP_EXTRA_INFO_H_ 52 #endif // CLIENT_LINUX_HANDLER_MICRODUMP_EXTRA_INFO_H_
OLDNEW
« no previous file with comments | « no previous file | client/linux/microdump_writer/microdump_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698