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

Unified Diff: components/upload_list/upload_list.cc

Issue 2324983002: [Android] Wire up manual crash uploads. (Closed)
Patch Set: Fix pending upload handling, and nit fixes Created 4 years, 3 months 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
« no previous file with comments | « chrome/browser/ui/webui/crashes_ui.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/upload_list/upload_list.cc
diff --git a/components/upload_list/upload_list.cc b/components/upload_list/upload_list.cc
index 8db2a706ea588fabbd9a113a6a680719e5c07c37..082c01dfa059008f9e9239653e872922b0d55823 100644
--- a/components/upload_list/upload_list.cc
+++ b/components/upload_list/upload_list.cc
@@ -156,15 +156,13 @@ void UploadList::GetUploads(size_t max_count,
void UploadList::RequestSingleCrashUploadAsync(const std::string& local_id) {
DCHECK(sequence_checker_.CalledOnValidSequence());
-#if defined(OS_WIN) || defined(OS_MACOSX)
task_runner_->PostTask(
FROM_HERE,
base::Bind(&UploadList::RequestSingleCrashUpload, this, local_id));
-#endif
}
void UploadList::RequestSingleCrashUpload(const std::string& local_id) {
- // Manual uploads for not uploaded crash reports are not available for non
- // crashpad systems.
+ // Manual uploads for not-yet uploaded crash reports are only available for
+ // Crashpad systems and for Android.
NOTREACHED();
}
« no previous file with comments | « chrome/browser/ui/webui/crashes_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698