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

Side by Side Diff: src/client/linux/microdump_writer/microdump_writer.h

Issue 1334473003: Add GPU fingerprint information to breakpad microdumps. (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: 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
OLDNEW
1 // Copyright (c) 2014, Google Inc. 1 // Copyright (c) 2014, 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 // build fingerprint (e.g., aosp/occam/mako:5.1.1/LMY47W/1234:eng/dev-keys). 50 // build fingerprint (e.g., aosp/occam/mako:5.1.1/LMY47W/1234:eng/dev-keys).
51 // product_info: a (optional) C string which determines the product name and 51 // product_info: a (optional) C string which determines the product name and
52 // version (e.g., WebView:42.0.2311.136). 52 // version (e.g., WebView:42.0.2311.136).
53 // 53 //
54 // Returns true iff successful. 54 // Returns true iff successful.
55 bool WriteMicrodump(pid_t crashing_process, 55 bool WriteMicrodump(pid_t crashing_process,
56 const void* blob, 56 const void* blob,
57 size_t blob_size, 57 size_t blob_size,
58 const MappingList& mappings, 58 const MappingList& mappings,
59 const char* build_fingerprint, 59 const char* build_fingerprint,
60 const char* product_info); 60 const char* product_info,
61 const char* gpu_fingerprint);
61 62
62 } // namespace google_breakpad 63 } // namespace google_breakpad
63 64
64 #endif // CLIENT_LINUX_MINIDUMP_WRITER_MICRODUMP_WRITER_H_ 65 #endif // CLIENT_LINUX_MINIDUMP_WRITER_MICRODUMP_WRITER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698