From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Fri, 1 May 2020 18:25:59 -0700 Subject: upload_list: add LoadSync method This allows synchronous loading of the upload list, which is required by the crashReporter.getUploadedReports() API. The synchronous version is deprecated, and this API should be removed once the deprecated behavior is no longer supported. diff --git a/components/upload_list/upload_list.cc b/components/upload_list/upload_list.cc index 4a6b57e81398727977a9ad21ec601ee2f81e910b..03163affcc649ae53c2b7110d27dbd39ae00ae26 100644 --- a/components/upload_list/upload_list.cc +++ b/components/upload_list/upload_list.cc @@ -72,6 +72,10 @@ void UploadList::Load(base::OnceClosure callback) { base::BindOnce(&UploadList::OnLoadComplete, this)); } +void UploadList::LoadSync() { + uploads_ = LoadUploadList(); +} + void UploadList::Clear(const base::Time& begin, const base::Time& end, base::OnceClosure callback) { diff --git a/components/upload_list/upload_list.h b/components/upload_list/upload_list.h index 20358339df63ae2bb8b955870c5daf51b65f19f7..7cf89626bea8ee9436f15366446f053a479ac438 100644 --- a/components/upload_list/upload_list.h +++ b/components/upload_list/upload_list.h @@ -73,6 +73,8 @@ class UploadList : public base::RefCountedThreadSafe { // overwrite the previously supplied one, and the first will not be called. void Load(base::OnceClosure callback); + void LoadSync(); + // Clears any data associated with the upload list, where the upload time or // capture time falls within the given range. void Clear(const base::Time& begin,