| Index: chrome/browser/sync/sync_ui_util.cc
|
| diff --git a/chrome/browser/sync/sync_ui_util.cc b/chrome/browser/sync/sync_ui_util.cc
|
| index a3501b64e91c032185d85ef4f34251a75f6e12ed..188874d2f24ccbf10daa0333c7fdce3dadd02ee5 100644
|
| --- a/chrome/browser/sync/sync_ui_util.cc
|
| +++ b/chrome/browser/sync/sync_ui_util.cc
|
| @@ -349,7 +349,7 @@ void ConstructAboutInformation(ProfileSyncService* service,
|
| full_status.summary));
|
|
|
| strings->Set("authenticated",
|
| - new FundamentalValue(full_status.authenticated));
|
| + new base::FundamentalValue(full_status.authenticated));
|
| strings->SetString("auth_problem",
|
| sync_ui_util::MakeSyncAuthErrorText(
|
| service->GetAuthError().state()));
|
| @@ -468,7 +468,8 @@ void ConstructAboutInformation(ProfileSyncService* service,
|
| }
|
|
|
| if (service->unrecoverable_error_detected()) {
|
| - strings->Set("unrecoverable_error_detected", new FundamentalValue(true));
|
| + strings->Set("unrecoverable_error_detected",
|
| + new base::FundamentalValue(true));
|
| tracked_objects::Location loc(service->unrecoverable_error_location());
|
| std::string location_str;
|
| loc.Write(true, true, &location_str);
|
|
|