aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/handler/exception_handler.h
diff options
context:
space:
mode:
authorted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-09-17 14:01:10 +0000
committerted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-09-17 14:01:10 +0000
commit54ede03227a7c90f4d9911b6f247c530e04e4ce9 (patch)
tree93281d8a64fa1a08c723bbdbf1a20f8294eaab95 /src/client/linux/handler/exception_handler.h
parentFix compilation of crash_generation_server.cc, and add it to the client libra... (diff)
downloadbreakpad-54ede03227a7c90f4d9911b6f247c530e04e4ce9.tar.xz
Allow setting a new MinidumpDescriptor on ExceptionHandler, also expose directory from MinidumpDescriptor
R=digit at https://breakpad.appspot.com/452003/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1037 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/linux/handler/exception_handler.h')
-rw-r--r--src/client/linux/handler/exception_handler.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/linux/handler/exception_handler.h b/src/client/linux/handler/exception_handler.h
index cde5ee8a..95817424 100644
--- a/src/client/linux/handler/exception_handler.h
+++ b/src/client/linux/handler/exception_handler.h
@@ -138,6 +138,10 @@ class ExceptionHandler {
return minidump_descriptor_;
}
+ void set_minidump_descriptor(const MinidumpDescriptor& descriptor) {
+ minidump_descriptor_ = descriptor;
+ }
+
void set_crash_handler(HandlerCallback callback) {
crash_handler_ = callback;
}