Chromium Code Reviews| 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..0d67494b544057970681c83b2023b7fc936ec7b8 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); |
| + // For use with scheduling non-critical tasks for execution after startup. |
| + // The order or execution of tasks posted here is unspecified even when |
| + // posting to a SequencedTaskRunner and tasks are not guaranteed to be run |
| + // prior to browser shutdown. |
| + // Note: see related ContentBrowserClient.PostAfterStartupTask. |
|
jam
2015/03/23 23:19:44
nit: s/./::
|
| + static void PostAfterStartupTask( |
| + const tracked_objects::Location& from_here, |
| + const scoped_refptr<base::TaskRunner>& task_runner, |
| + const base::Closure& task); |
| + |
| // 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. |