Index: third_party/crashpad/crashpad/handler/crash_report_upload_thread.h |
diff --git a/third_party/crashpad/crashpad/handler/crash_report_upload_thread.h b/third_party/crashpad/crashpad/handler/crash_report_upload_thread.h |
index 14debacd1ab840f04176d5dfc266b173acf46101..a9601d14fe49405ee28aeb6dce6bdb9584b40820 100644 |
--- a/third_party/crashpad/crashpad/handler/crash_report_upload_thread.h |
+++ b/third_party/crashpad/crashpad/handler/crash_report_upload_thread.h |
@@ -45,11 +45,9 @@ class CrashReportUploadThread : public WorkerThread::Delegate { |
//! \param[in] url The URL of the server to upload crash reports to. |
//! \param[in] rate_limit Whether uploads should be throttled to a (currently |
//! hardcoded) rate. |
- //! \param[in] upload_gzip Whether uploads should use `gzip` compression. |
CrashReportUploadThread(CrashReportDatabase* database, |
const std::string& url, |
- bool rate_limit, |
- bool upload_gzip); |
+ bool rate_limit); |
~CrashReportUploadThread(); |
//! \brief Starts a dedicated upload thread, which executes ThreadMain(). |
@@ -141,7 +139,6 @@ class CrashReportUploadThread : public WorkerThread::Delegate { |
WorkerThread thread_; |
CrashReportDatabase* database_; // weak |
bool rate_limit_; |
- bool upload_gzip_; |
DISALLOW_COPY_AND_ASSIGN(CrashReportUploadThread); |
}; |