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

Unified Diff: chrome/browser/bitmap_fetcher/bitmap_fetcher.cc

Issue 1153143002: Fix race condition in WebstoreInstallHelper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
Index: chrome/browser/bitmap_fetcher/bitmap_fetcher.cc
diff --git a/chrome/browser/bitmap_fetcher/bitmap_fetcher.cc b/chrome/browser/bitmap_fetcher/bitmap_fetcher.cc
index f99f3c20f56d889b94fee0598e5b2d58e9cf48f5..ae909bab1130fb0f31d31c5bd43967c2b797c6f6 100644
--- a/chrome/browser/bitmap_fetcher/bitmap_fetcher.cc
+++ b/chrome/browser/bitmap_fetcher/bitmap_fetcher.cc
@@ -37,8 +37,6 @@ void BitmapFetcher::Start(net::URLRequestContextGetter* request_context,
// Methods inherited from URLFetcherDelegate.
void BitmapFetcher::OnURLFetchComplete(const net::URLFetcher* source) {
- DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
Marc Treib 2015/05/27 08:23:04 I don't think this DCHECK should be here. It's the
-
if (source->GetStatus().status() != net::URLRequestStatus::SUCCESS) {
ReportFailure();
return;

Powered by Google App Engine
This is Rietveld 408576698