diff options
author | bryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-09-11 22:50:25 +0000 |
---|---|---|
committer | bryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-09-11 22:50:25 +0000 |
commit | 4c138534378aa715476be0741aae2f6bd552f52e (patch) | |
tree | cfd8bad406bfa42b1655d05decf448a58f15e2ae /src/google | |
parent | Change report id to be a string (#21) r=mmentovai. (diff) | |
download | breakpad-4c138534378aa715476be0741aae2f6bd552f52e.tar.xz |
Add a client_id field to CrashReport (#22) r=mmentovai.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@23 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google')
-rw-r--r-- | src/google/crash_report.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google/crash_report.h b/src/google/crash_report.h index ef26b17c..22937538 100644 --- a/src/google/crash_report.h +++ b/src/google/crash_report.h @@ -34,6 +34,9 @@ struct CrashReport { // and is not used by airbag. string report_id; + // An optional id which identifies the client that generated the report. + string client_id; + // The time that the report was uploaded (milliseconds since the epoch) airbag_time_t report_time; |