aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/symbol_upload.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/linux/symbol_upload.h')
-rw-r--r--src/common/linux/symbol_upload.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/linux/symbol_upload.h b/src/common/linux/symbol_upload.h
index 040e980f..9033152b 100644
--- a/src/common/linux/symbol_upload.h
+++ b/src/common/linux/symbol_upload.h
@@ -46,6 +46,8 @@ enum class UploadProtocol {
SYM_UPLOAD_V2,
};
+constexpr char kBreakpadSymbolType[] = "BREAKPAD";
+
struct Options {
Options() : upload_protocol(UploadProtocol::SYM_UPLOAD_V1), force(false) {}
@@ -58,6 +60,11 @@ struct Options {
UploadProtocol upload_protocol;
bool force;
string api_key;
+
+ // These only need to be set for native symbol uploads.
+ string code_file;
+ string debug_id;
+ string type;
};
// Starts upload to symbol server with options.