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

Unified Diff: chrome/browser/chromeos/extensions/external_cache.cc

Issue 595383002: cros: Fix external cache not updating. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/external_cache.cc
diff --git a/chrome/browser/chromeos/extensions/external_cache.cc b/chrome/browser/chromeos/extensions/external_cache.cc
index 8e8f205ac0ebd30200a1e14dc7fa9c4b13c5086c..d1cef41191c61a5a216c3a54cbfadfc608c6f99f 100644
--- a/chrome/browser/chromeos/extensions/external_cache.cc
+++ b/chrome/browser/chromeos/extensions/external_cache.cc
@@ -224,8 +224,8 @@ void ExternalCache::CheckCache() {
// If request_context_ is missing we can't download anything.
if (!downloader_ && request_context_.get()) {
- downloader_.reset(
- new extensions::ExtensionDownloader(this, request_context_.get()));
+ downloader_ = ChromeExtensionDownloaderFactory::CreateForRequestContext(
+ request_context_.get(), this);
}
cached_extensions_->Clear();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698