Index: content/public/browser/content_browser_client.h |
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
index 9d1756dec89cfc08ab87e015aae4ddf86b281c50..32131cd3374af8a86b1c5a7b0adc028a63a80e9e 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -15,6 +15,7 @@ |
#include "base/callback_forward.h" |
#include "base/memory/scoped_vector.h" |
+#include "base/task_scheduler/task_scheduler.h" |
#include "base/values.h" |
#include "build/build_config.h" |
#include "content/public/browser/certificate_request_result_type.h" |
@@ -48,6 +49,7 @@ class GURL; |
namespace base { |
class CommandLine; |
class FilePath; |
+class SchedulerWorkerPoolParams; |
} |
namespace blink { |
@@ -791,6 +793,13 @@ class CONTENT_EXPORT ContentBrowserClient { |
virtual void CreateMediaRemoter(RenderFrameHost* render_frame_host, |
media::mojom::RemotingSourcePtr source, |
media::mojom::RemoterRequest request) {} |
+ |
fdoray
2016/12/06 21:14:12
// Comment?
robliao
2016/12/07 00:57:32
Done.
|
+ virtual void GetTaskSchedulerInitializationParams( |
+ std::vector<base::SchedulerWorkerPoolParams>* params_vector, |
+ base::TaskScheduler::WorkerPoolIndexForTraitsCallback* |
+ index_to_traits_callback); |
+ |
fdoray
2016/12/06 21:14:12
// Comment?
robliao
2016/12/07 00:57:32
Done.
|
+ virtual void PerformRedirectionToTaskScheduler() {} |
}; |
} // namespace content |