diff options
3 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/sync/test/integration/extensions_helper.cc b/chrome/browser/sync/test/integration/extensions_helper.cc index a9663790..9c23374 100644 --- a/chrome/browser/sync/test/integration/extensions_helper.cc +++ b/chrome/browser/sync/test/integration/extensions_helper.cc @@ -248,11 +248,11 @@ void ExtensionsMatchChecker::Wait() { observing_ = true; if (IsExitConditionSatisfied()) { - VLOG(1) << "Extensions matched without waiting"; + DVLOG(1) << "Extensions matched without waiting"; return; } - VLOG(1) << "Starting Wait: " << GetDebugMessage(); + DVLOG(1) << "Starting Wait: " << GetDebugMessage(); StartBlockingWait(); } diff --git a/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc b/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc index 9d2b316..026bfd2 100644 --- a/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc +++ b/chrome/browser/sync/test/integration/quiesce_status_change_checker.cc @@ -174,7 +174,7 @@ bool QuiesceStatusChangeChecker::IsExitConditionSatisfied() { } if (!(*it)->HasLatestProgressMarkers()) { - VLOG(1) << "Not quiesced: Progress markers are old."; + DVLOG(1) << "Not quiesced: Progress markers are old."; return false; } } @@ -201,7 +201,7 @@ bool QuiesceStatusChangeChecker::IsExitConditionSatisfied() { while (it2 != enabled_services.end()) { // Return false if there is a progress marker mismatch. if (!ProgressMarkersMatch(*it1, *it2)) { - VLOG(1) << "Not quiesced: Progress marker mismatch."; + DVLOG(1) << "Not quiesced: Progress marker mismatch."; return false; } it1++; diff --git a/chrome/browser/sync/test/integration/sync_app_list_helper.cc b/chrome/browser/sync/test/integration/sync_app_list_helper.cc index d862845..f04d4f7 100644 --- a/chrome/browser/sync/test/integration/sync_app_list_helper.cc +++ b/chrome/browser/sync/test/integration/sync_app_list_helper.cc @@ -104,13 +104,13 @@ bool SyncAppListHelper::AllProfilesHaveSameAppListAsVerifier() { } if (!res) { Profile* verifier = test_->verifier(); - VLOG(1) << "Verifier: " - << AppListSyncableServiceFactory::GetForProfile(verifier); + DVLOG(1) << "Verifier: " + << AppListSyncableServiceFactory::GetForProfile(verifier); PrintAppList(test_->verifier()); for (int i = 0; i < test_->num_clients(); ++i) { Profile* profile = test_->GetProfile(i); - VLOG(1) << "Profile: " << i << ": " - << AppListSyncableServiceFactory::GetForProfile(profile); + DVLOG(1) << "Profile: " << i << ": " + << AppListSyncableServiceFactory::GetForProfile(profile); PrintAppList(profile); } } @@ -175,7 +175,7 @@ void SyncAppListHelper::PrintItem(Profile* profile, extensions::ExtensionPrefs::Get(profile)->app_sorting(); std::string id = item->id(); if (item->GetItemType() == AppListFolderItem::kItemType) { - VLOG(1) << label << item->ToDebugString(); + DVLOG(1) << label << item->ToDebugString(); AppListFolderItem* folder = static_cast<AppListFolderItem*>(item); for (size_t i = 0; i < folder->item_list()->item_count(); ++i) { AppListItem* child = folder->item_list()->item_at(i); @@ -185,8 +185,8 @@ void SyncAppListHelper::PrintItem(Profile* profile, } return; } - VLOG(1) << label << item->ToDebugString() - << " Page: " << s->GetPageOrdinal(id).ToDebugString().substr(0, 8) - << " Item: " - << s->GetAppLaunchOrdinal(id).ToDebugString().substr(0, 8); + DVLOG(1) << label << item->ToDebugString() + << " Page: " << s->GetPageOrdinal(id).ToDebugString().substr(0, 8) + << " Item: " + << s->GetAppLaunchOrdinal(id).ToDebugString().substr(0, 8); } |