Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6094)

Unified Diff: chrome/browser/sync/test/integration/sync_app_list_helper.cc

Issue 705033002: [content/browser/sync] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/test/integration/quiesce_status_change_checker.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/test/integration/sync_app_list_helper.cc
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 d862845de4710a80fab9840ef5aef2a02329e36d..f04d4f7cbf0c93aa46883b3c14f025a765d5bb84 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);
}
« no previous file with comments | « chrome/browser/sync/test/integration/quiesce_status_change_checker.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698