| Index: chrome/browser/component_updater/component_patcher_operation_out_of_process_browsertest.cc
|
| diff --git a/chrome/browser/component_updater/component_patcher_operation_out_of_process_browsertest.cc b/chrome/browser/component_updater/component_patcher_operation_out_of_process_browsertest.cc
|
| index 4e24d407d3135274b7d6c9c028f54f788e4d0f7a..6267bfb91879f0f70917669bd9b9c2a865b33c02 100644
|
| --- a/chrome/browser/component_updater/component_patcher_operation_out_of_process_browsertest.cc
|
| +++ b/chrome/browser/component_updater/component_patcher_operation_out_of_process_browsertest.cc
|
| @@ -44,8 +44,7 @@ class OutOfProcessPatchTest : public InProcessBrowserTest {
|
|
|
| base::RunLoop run_loop;
|
| base::PostTaskWithTraitsAndReply(
|
| - FROM_HERE, base::TaskTraits().MayBlock().WithPriority(
|
| - base::TaskPriority::BACKGROUND),
|
| + FROM_HERE, {base::MayBlock(), base::TaskPriority::BACKGROUND},
|
| base::Bind(&OutOfProcessPatchTest::CopyFile, TestFile(name), path),
|
| run_loop.QuitClosure());
|
|
|
| @@ -58,8 +57,7 @@ class OutOfProcessPatchTest : public InProcessBrowserTest {
|
|
|
| base::RunLoop run_loop;
|
| base::PostTaskWithTraitsAndReply(
|
| - FROM_HERE, base::TaskTraits().MayBlock().WithPriority(
|
| - base::TaskPriority::BACKGROUND),
|
| + FROM_HERE, {base::MayBlock(), base::TaskPriority::BACKGROUND},
|
| base::Bind(&OutOfProcessPatchTest::CopyFile, TestFile(name), path),
|
| run_loop.QuitClosure());
|
|
|
|
|