| Index: content/public/utility/utility_thread.h
|
| diff --git a/content/public/utility/utility_thread.h b/content/public/utility/utility_thread.h
|
| index c76efda6e1bda219392d8dfeb4bc6a3fe12c4b8b..4a9ece9c7638e9cbf7b9b915d9d83bcc0dfc991a 100644
|
| --- a/content/public/utility/utility_thread.h
|
| +++ b/content/public/utility/utility_thread.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_PUBLIC_UTILITY_UTILITY_THREAD_H_
|
| #define CONTENT_PUBLIC_UTILITY_UTILITY_THREAD_H_
|
|
|
| +#include "base/memory/ref_counted.h"
|
| +#include "base/single_thread_task_runner.h"
|
| #include "content/public/child/child_thread.h"
|
|
|
| namespace content {
|
| @@ -18,6 +20,8 @@ class CONTENT_EXPORT UtilityThread : virtual public ChildThread {
|
| UtilityThread();
|
| ~UtilityThread() override;
|
|
|
| + virtual scoped_refptr<base::SingleThreadTaskRunner> GetIOTaskRunner() = 0;
|
| +
|
| // Releases the process if we are not (or no longer) in batch mode.
|
| virtual void ReleaseProcessIfNeeded() = 0;
|
|
|
|
|