mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
ios: Correct typo in client API StartProcessingPendingReports.
Change-Id: Ibc40751a21ed884bde7ed592df20d7541762cba8 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3031701 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Justin Cohen <justincohen@chromium.org>
This commit is contained in:
parent
202283a85c
commit
b8a1685773
@ -506,11 +506,11 @@ class CrashpadClient {
|
|||||||
//! on another thread. This method does not block.
|
//! on another thread. This method does not block.
|
||||||
//!
|
//!
|
||||||
//! A handler must have already been installed before calling this method.
|
//! A handler must have already been installed before calling this method.
|
||||||
static void StartProcesingPendingReports();
|
static void StartProcessingPendingReports();
|
||||||
|
|
||||||
//! \brief Requests that the handler capture an intermediate dump even though
|
//! \brief Requests that the handler capture an intermediate dump even though
|
||||||
//! there hasn't been a crash. The intermediate dump will be converted
|
//! there hasn't been a crash. The intermediate dump will be converted
|
||||||
//! to a mindump immediately. If StartProcesingPendingReports() has been
|
//! to a mindump immediately. If StartProcessingPendingReports() has been
|
||||||
//! called, this will also trigger an upload.
|
//! called, this will also trigger an upload.
|
||||||
//!
|
//!
|
||||||
//! For internal use only. Clients should use CRASHPAD_SIMULATE_CRASH().
|
//! For internal use only. Clients should use CRASHPAD_SIMULATE_CRASH().
|
||||||
|
@ -233,7 +233,7 @@ void CrashpadClient::ProcessIntermediateDump(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
void CrashpadClient::StartProcesingPendingReports() {
|
void CrashpadClient::StartProcessingPendingReports() {
|
||||||
// TODO(justincohen): Start the CrashReportUploadThread.
|
// TODO(justincohen): Start the CrashReportUploadThread.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ the next call to `ProcessIntermediateDumps`. Conversely,
|
|||||||
stability concerns. In this case, intermediate dumps are automatically
|
stability concerns. In this case, intermediate dumps are automatically
|
||||||
converted to minidumps and immediately eligible for uploading.
|
converted to minidumps and immediately eligible for uploading.
|
||||||
|
|
||||||
### `StartProcesingPendingReports`
|
### `StartProcessingPendingReports`
|
||||||
For similar reasons, applications may choose the correct time to begin uploading
|
For similar reasons, applications may choose the correct time to begin uploading
|
||||||
pending reports, such as when ideal network conditions exist. By default,
|
pending reports, such as when ideal network conditions exist. By default,
|
||||||
clients start with uploading disabled. Applications should call this API when
|
clients start with uploading disabled. Applications should call this API when
|
||||||
|
Loading…
x
Reference in New Issue
Block a user