| Index: snapshot/win/process_snapshot_win.h
|
| diff --git a/snapshot/win/process_snapshot_win.h b/snapshot/win/process_snapshot_win.h
|
| index 9e668ef9c527e32ffe00660ff1c35f7eb0990442..6cb4976d1ba1e5e5e22dedf68d02d1e6d0d6e7b4 100644
|
| --- a/snapshot/win/process_snapshot_win.h
|
| +++ b/snapshot/win/process_snapshot_win.h
|
| @@ -59,17 +59,18 @@ class ProcessSnapshotWin final : public ProcessSnapshot {
|
|
|
| //! \brief Initializes the object's exception.
|
| //!
|
| - //! This populates the data to be returned by Exception(). The parameters may
|
| - //! be passed directly through from a Windows exception handler.
|
| + //! This populates the data to be returned by Exception().
|
| //!
|
| //! This method must not be called until after a successful call to
|
| //! Initialize().
|
| //!
|
| + //! \param[in] exception_information_address The address in the client
|
| + //! process's address space of an ExceptionInformation structure.
|
| + //!
|
| //! \return `true` if the exception information could be initialized, `false`
|
| //! otherwise with an appropriate message logged. When this method returns
|
| //! `false`, the ProcessSnapshotWin object's validity remains unchanged.
|
| - bool InitializeException(DWORD thread_id,
|
| - WinVMAddress exception_pointers);
|
| + bool InitializeException(WinVMAddress exception_information_address);
|
|
|
| //! \brief Sets the value to be returned by ReportID().
|
| //!
|
|
|