Index: content/public/browser/browser_thread.h |
diff --git a/content/public/browser/browser_thread.h b/content/public/browser/browser_thread.h |
index b3b42290978dab0f36a375591b388a643ab57df9..c1874ceb347a984134604d0435e977d4c3226d2b 100644 |
--- a/content/public/browser/browser_thread.h |
+++ b/content/public/browser/browser_thread.h |
@@ -184,6 +184,16 @@ class CONTENT_EXPORT BrowserThread { |
const tracked_objects::Location& from_here, |
const base::Closure& task); |
+ static bool PostAfterStartupTask( |
+ const tracked_objects::Location& from_here, |
+ const scoped_refptr<base::TaskRunner>& task_runner, |
+ const base::Closure& task); |
+ static bool PostAfterStartupTaskAndReply( |
+ const tracked_objects::Location& from_here, |
+ const scoped_refptr<base::TaskRunner>& task_runner, |
+ const base::Closure& task, |
+ const base::Closure& reply); |
+ |
// Returns the thread pool used for blocking file I/O. Use this object to |
// perform random blocking operations such as file writes or querying the |
// Windows registry. |