| 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 9a3b87710d193b910b7f97461bcd13f82f0a1424..9aae363e3792defd1ca3c1fc51f697bdb370594c 100644
|
| --- a/chrome/browser/chromeos/customization/customization_document.cc
|
| +++ b/chrome/browser/chromeos/customization/customization_document.cc
|
| @@ -539,7 +539,7 @@ void ServicesCustomizationDocument::StartFetching() {
|
| void ServicesCustomizationDocument::ReadFileInBackground(
|
| base::WeakPtr<ServicesCustomizationDocument> self,
|
| const base::FilePath& file) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::FILE);
|
|
|
| std::string manifest;
|
| if (!base::ReadFileToString(file, &manifest)) {
|
| @@ -874,7 +874,7 @@ void ServicesCustomizationDocument::CheckAndApplyWallpaper() {
|
| void ServicesCustomizationDocument::OnCheckedWallpaperCacheExists(
|
| scoped_ptr<bool> exists,
|
| scoped_ptr<ServicesCustomizationDocument::ApplyingTask> applying) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| DCHECK(exists);
|
| DCHECK(applying);
|
|
|
|
|