| Index: client/crash_report_database_mac.mm
|
| diff --git a/client/crash_report_database_mac.mm b/client/crash_report_database_mac.mm
|
| index fe3e13a360a465531ac08d0182ff6532d0da32ec..5f2e32e366b5a0fd9d4431f89587c57d748c3049 100644
|
| --- a/client/crash_report_database_mac.mm
|
| +++ b/client/crash_report_database_mac.mm
|
| @@ -89,7 +89,7 @@ bool CreateOrEnsureDirectoryExists(const base::FilePath& path) {
|
| //!
|
| //! The database maintains three directories of reports: `"new"` to hold crash
|
| //! reports that are in the process of being written, `"completed"` to hold
|
| -//! reports that have been written and are awaing upload, and `"uploaded"` to
|
| +//! reports that have been written and are awaiting upload, and `"uploaded"` to
|
| //! hold reports successfully uploaded to a collection server. If the user has
|
| //! opted out of report collection, reports will still be written and moved
|
| //! to the completed directory, but they just will not be uploaded.
|
| @@ -149,7 +149,7 @@ class CrashReportDatabaseMac : public CrashReportDatabase {
|
| //! This does not block, and so callers must ensure that the lock is valid
|
| //! after calling.
|
| //!
|
| - //! \param[in] path The path of the file to lcok.
|
| + //! \param[in] path The path of the file to lock.
|
| //!
|
| //! \return A scoped lock object. If the result is not valid, an error is
|
| //! logged.
|
| @@ -485,8 +485,7 @@ bool CrashReportDatabaseMac::ReadReportMetadataLocked(
|
| }
|
|
|
| // static
|
| -CrashReportDatabase::OperationStatus
|
| -CrashReportDatabaseMac::ReportsInDirectory(
|
| +CrashReportDatabase::OperationStatus CrashReportDatabaseMac::ReportsInDirectory(
|
| const base::FilePath& path,
|
| std::vector<const CrashReportDatabase::Report>* reports) {
|
| DCHECK(reports->empty());
|
|
|