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

Unified Diff: content/browser/appcache/chrome_appcache_service.cc

Issue 2133083002: Remove all remaining traces of MessageLoopProxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « content/browser/android/synchronous_compositor_host.cc ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/chrome_appcache_service.cc
diff --git a/content/browser/appcache/chrome_appcache_service.cc b/content/browser/appcache/chrome_appcache_service.cc
index 11d107ce5a367369ceaee02f26b566871d20c915..a508c5e0f70ce448d056cf52231d35c4e7336ebf 100644
--- a/content/browser/appcache/chrome_appcache_service.cc
+++ b/content/browser/appcache/chrome_appcache_service.cc
@@ -44,12 +44,10 @@ void ChromeAppCacheService::InitializeOnIOThread(
set_request_context(request_context_getter->GetURLRequestContext());
// Init our base class.
- Initialize(
- cache_path_,
- BrowserThread::GetMessageLoopProxyForThread(
- BrowserThread::FILE_USER_BLOCKING)
- .get(),
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE).get());
+ Initialize(cache_path_, BrowserThread::GetTaskRunnerForThread(
+ BrowserThread::FILE_USER_BLOCKING)
+ .get(),
+ BrowserThread::GetTaskRunnerForThread(BrowserThread::CACHE).get());
set_appcache_policy(this);
set_special_storage_policy(special_storage_policy.get());
}
« no previous file with comments | « content/browser/android/synchronous_compositor_host.cc ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698