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

Unified Diff: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 months 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
Index: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
diff --git a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
index 4f74427819a093162ae2951fccbfd731923e21a6..5b4c9236dae09e611e61130fb84b92016f9864f3 100644
--- a/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
+++ b/chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.cc
@@ -143,12 +143,12 @@ void ChromeInternalLogSource::PopulateSyncLogs(SystemLogsResponse* response) {
browser_sync::ProfileSyncService* service =
ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile);
std::unique_ptr<base::DictionaryValue> sync_logs(
- syncer::sync_ui_util::ConstructAboutInformation(
+ sync_driver::sync_ui_util::ConstructAboutInformation(
service, service->signin(), chrome::GetChannel()));
// Remove identity section.
base::ListValue* details = NULL;
- sync_logs->GetList(syncer::sync_ui_util::kDetailsKey, &details);
+ sync_logs->GetList(sync_driver::sync_ui_util::kDetailsKey, &details);
if (!details)
return;
for (base::ListValue::iterator it = details->begin();
@@ -157,7 +157,7 @@ void ChromeInternalLogSource::PopulateSyncLogs(SystemLogsResponse* response) {
if ((*it)->GetAsDictionary(&dict)) {
std::string title;
dict->GetString("title", &title);
- if (title == syncer::sync_ui_util::kIdentityTitle) {
+ if (title == sync_driver::sync_ui_util::kIdentityTitle) {
details->Erase(it, NULL);
break;
}

Powered by Google App Engine
This is Rietveld 408576698