| Index: chrome/browser/chromeos/customization/customization_document.cc
|
| diff --git a/chrome/browser/chromeos/customization/customization_document.cc b/chrome/browser/chromeos/customization/customization_document.cc
|
| index 19377dfa08b3cf8be8692d437d762b1b41718288..3a14bfcaf61a87e701d4421340c268964c47fc55 100644
|
| --- a/chrome/browser/chromeos/customization/customization_document.cc
|
| +++ b/chrome/browser/chromeos/customization/customization_document.cc
|
| @@ -866,10 +866,9 @@ void ServicesCustomizationDocument::CheckAndApplyWallpaper() {
|
| &ServicesCustomizationDocument::OnCheckedWallpaperCacheExists,
|
| weak_ptr_factory_.GetWeakPtr(), base::Passed(std::move(exists)),
|
| base::Passed(std::move(applying)));
|
| - base::PostTaskWithTraitsAndReply(FROM_HERE,
|
| - base::TaskTraits().MayBlock().WithPriority(
|
| - base::TaskPriority::BACKGROUND),
|
| - check_file_exists, on_checked_closure);
|
| + base::PostTaskWithTraitsAndReply(
|
| + FROM_HERE, {base::MayBlock(), base::TaskPriority::BACKGROUND},
|
| + check_file_exists, on_checked_closure);
|
| }
|
|
|
| void ServicesCustomizationDocument::OnCheckedWallpaperCacheExists(
|
|
|