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

Unified Diff: components/crash/content/app/crashpad.h

Issue 1512463003: win: Get Kasko crash keys from Crashpad instead of Breakpad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary initialization Created 5 years 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
Index: components/crash/content/app/crashpad.h
diff --git a/components/crash/content/app/crashpad.h b/components/crash/content/app/crashpad.h
index 6121efb14657dca733e6657557e240db03690073..b927c39d634fa19c5055cd565ed3b163a8ff8f91 100644
--- a/components/crash/content/app/crashpad.h
+++ b/components/crash/content/app/crashpad.h
@@ -8,6 +8,7 @@
#include <time.h>
#include <string>
+#include <utility>
#include <vector>
#include "base/files/file_path.h"
@@ -70,6 +71,9 @@ struct UploadedReport {
// disabled.
void GetUploadedReports(std::vector<UploadedReport>* uploaded_reports);
+// Returns a copy of the current crash keys.
+std::vector<std::pair<std::string, std::string>> GetCrashKeys();
chrisha 2015/12/08 21:07:57 If we're poking a hole here, we could always just
scottmg 2015/12/08 22:16:44 I didn't really like the ~20 lines of static_asser
Mark Mentovai 2015/12/10 23:35:55 Well if you’re saying that this should be doing tr
Mark Mentovai 2015/12/10 23:35:55 Conceptually it’s more of a map<string, string>, a
+
namespace internal {
// The platform-specific portion of InitializeCrashpad().

Powered by Google App Engine
This is Rietveld 408576698