Fix port of CrashReportUploadThread to windows

util/thread/ doesn't automatically start, contrary to previous pthread
implementation.

Thanks to mihnea@arkaos.net for the patch.

R=mark@chromium.org
BUG=https://codereview.chromium.org/1295363002/#msg5

Review URL: https://codereview.chromium.org/1286383006 .
This commit is contained in:
Scott Graham 2015-08-19 09:41:46 -07:00
parent 86419cf788
commit 4f2d2018de

View File

@ -177,6 +177,7 @@ void CrashReportUploadThread::Start() {
running_ = true;
thread_.reset(new internal::CrashReportUploadHelperThread(this));
thread_->Start();
}
void CrashReportUploadThread::Stop() {