| Index: chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| diff --git a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| index a456507c9f8624b80af28a74ee6051d26373d8ce..478bee0c12233d1e7246d64c80ad185050f59852 100644
|
| --- a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| +++ b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| @@ -27,11 +27,8 @@ void SandboxedZipAnalyzer::Start() {
|
|
|
| base::PostTaskWithTraits(
|
| FROM_HERE,
|
| - base::TaskTraits()
|
| - .MayBlock()
|
| - .WithPriority(base::TaskPriority::BACKGROUND)
|
| - .WithShutdownBehavior(
|
| - base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN),
|
| + {base::MayBlock(), base::TaskPriority::BACKGROUND,
|
| + base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
|
| base::BindOnce(&SandboxedZipAnalyzer::PrepareFileToAnalyze, this));
|
| }
|
|
|
|
|