Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: client/crash_report_database.h

Issue 987693004: Mac 10.6 SDK compatibility (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Define __STDC_FORMAT_MACROS Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/crash_report_database_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
//!
« no previous file with comments | « no previous file | client/crash_report_database_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698