Index: content/browser/browser_thread_impl.cc |
diff --git a/content/browser/browser_thread_impl.cc b/content/browser/browser_thread_impl.cc |
index f37c5b415f9798df2bf3477bf46184b6e72e7d3d..02cc35fb6765996b4ced4d428a87e70a262bc3d4 100644 |
--- a/content/browser/browser_thread_impl.cc |
+++ b/content/browser/browser_thread_impl.cc |
@@ -321,6 +321,13 @@ bool BrowserThread::PostNonNestableDelayedTask( |
} |
// static |
+bool BrowserThread::PostTaskOnIOThread( |
+ const tracked_objects::Location& from_here, |
+ const base::Closure& task) { |
+ return PostTask(BrowserThread::IO, from_here, task); |
+} |
+ |
+// static |
bool BrowserThread::PostTask(ID identifier, |
const tracked_objects::Location& from_here, |
Task* task) { |