Index: client/crashpad_client.h |
diff --git a/client/crashpad_client.h b/client/crashpad_client.h |
index cefa179bffbb8d4a0fdb6b81fa0907b73f3d9c48..5754be19fadb53ade79691b45eb32b0d990f9bc7 100644 |
--- a/client/crashpad_client.h |
+++ b/client/crashpad_client.h |
@@ -66,13 +66,17 @@ class CrashpadClient { |
//! Arguments passed in other parameters and arguments required to perform |
//! the handshake are the responsibility of this method, and must not be |
//! specified in this parameter. |
+ //! \param[in] restartable If `true`, the handler will be restarted if it |
+ //! dies, if this behavior is supported. This option is not available on |
Robert Sesek
2015/11/03 15:50:27
What happens if this is `true` and the platform do
|
+ //! all platforms, and does not function on all OS versions. |
//! |
//! \return `true` on success, `false` on failure with a message logged. |
bool StartHandler(const base::FilePath& handler, |
const base::FilePath& database, |
const std::string& url, |
const std::map<std::string, std::string>& annotations, |
- const std::vector<std::string>& arguments); |
+ const std::vector<std::string>& arguments, |
+ bool restartable); |
#if defined(OS_WIN) || DOXYGEN |
//! \brief Sets the IPC port of a presumably-running Crashpad handler process |