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

Unified Diff: content/browser/loader/loader_io_thread_notifier.cc

Issue 2785523002: Reduce/remove usage of BrowserThread in content/browser/loader. (Closed)
Patch Set: Fix unittests redness Created 3 years, 9 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: content/browser/loader/loader_io_thread_notifier.cc
diff --git a/content/browser/loader/loader_io_thread_notifier.cc b/content/browser/loader/loader_io_thread_notifier.cc
index a10537c9d3d342714e9245ce6628915cf3343176..9ae1111c3565fd232b3da6c17082fd73c785a43b 100644
--- a/content/browser/loader/loader_io_thread_notifier.cc
+++ b/content/browser/loader/loader_io_thread_notifier.cc
@@ -6,8 +6,8 @@
#include "content/browser/frame_host/render_frame_host_impl.h"
#include "content/browser/loader/global_routing_id.h"
+#include "content/browser/loader/loader_globals.h"
#include "content/browser/loader/resource_dispatcher_host_impl.h"
-#include "content/public/browser/browser_thread.h"
jam 2017/03/29 15:44:32 this file isn't going to move, since it's using Re
ananta 2017/03/29 19:41:04 Thanks. done
namespace content {
@@ -28,11 +28,10 @@ LoaderIOThreadNotifier::~LoaderIOThreadNotifier() {}
void LoaderIOThreadNotifier::RenderFrameDeleted(
RenderFrameHost* render_frame_host) {
- BrowserThread::PostTask(
- BrowserThread::IO, FROM_HERE,
- base::Bind(&NotifyRenderFrameDeletedOnIO,
- static_cast<RenderFrameHostImpl*>(render_frame_host)
- ->GetGlobalFrameRoutingId()));
+ LoaderGlobals::Get()->io_thread_task_runner()->PostTask(
+ FROM_HERE, base::Bind(&NotifyRenderFrameDeletedOnIO,
+ static_cast<RenderFrameHostImpl*>(render_frame_host)
+ ->GetGlobalFrameRoutingId()));
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698