Index: third_party/crashpad/crashpad/client/crashpad_info.h |
diff --git a/third_party/crashpad/crashpad/client/crashpad_info.h b/third_party/crashpad/crashpad/client/crashpad_info.h |
index 0462eaf91cb9bd8d67000a90a9d76edd88d744bd..77c9097a7637b29d1b4d108aac6486be9d499de2 100644 |
--- a/third_party/crashpad/crashpad/client/crashpad_info.h |
+++ b/third_party/crashpad/crashpad/client/crashpad_info.h |
@@ -96,10 +96,19 @@ struct CrashpadInfo { |
//! SimpleStringDictionary object. It is the caller’s responsibility to |
//! ensure that this pointer remains valid while it is in effect for a |
//! CrashpadInfo object. |
+ //! |
+ //! \sa simple_annotations() |
void set_simple_annotations(SimpleStringDictionary* simple_annotations) { |
simple_annotations_ = simple_annotations; |
} |
+ //! \return The simple annotations dictionary. |
+ //! |
+ //! \sa set_simple_annotations() |
+ SimpleStringDictionary* simple_annotations() const { |
+ return simple_annotations_; |
+ } |
+ |
//! \brief Enables or disables Crashpad handler processing. |
//! |
//! When handling an exception, the Crashpad handler will scan all modules in |