Index: client/crash_report_database.h |
diff --git a/client/crash_report_database.h b/client/crash_report_database.h |
index ef55d9d27be85cf1d154f7a2cadb5c975a3819d4..a266b212f962575835183942de8a2338b2cb54e4 100644 |
--- a/client/crash_report_database.h |
+++ b/client/crash_report_database.h |
@@ -196,8 +196,7 @@ class CrashReportDatabase { |
//! empty on entry. Only valid if this returns #kNoError. |
//! |
//! \return The operation status code. |
- virtual OperationStatus GetPendingReports( |
- std::vector<const Report>* reports) = 0; |
+ virtual OperationStatus GetPendingReports(std::vector<Report>* reports) = 0; |
//! \brief Returns a list of crash report records that have been completed, |
//! either by being uploaded or by skipping upload. |
@@ -206,8 +205,7 @@ class CrashReportDatabase { |
//! empty on entry. Only valid if this returns #kNoError. |
//! |
//! \return The operation status code. |
- virtual OperationStatus GetCompletedReports( |
- std::vector<const Report>* reports) = 0; |
+ virtual OperationStatus GetCompletedReports(std::vector<Report>* reports) = 0; |
//! \brief Obtains a report object for uploading to a collection server. |
//! |