| Index: chrome/browser/sync/sync_ui_util_unittest.cc
|
| diff --git a/chrome/browser/sync/sync_ui_util_unittest.cc b/chrome/browser/sync/sync_ui_util_unittest.cc
|
| index d6a416cb7e258eedf306489d7aea7bec735fd03a..e4b586619dc1071a10df6d0f7d9d9baa29596c44 100644
|
| --- a/chrome/browser/sync/sync_ui_util_unittest.cc
|
| +++ b/chrome/browser/sync/sync_ui_util_unittest.cc
|
| @@ -22,8 +22,8 @@ TEST(SyncUIUtilTest, ConstructAboutInformationWithUnrecoverableErrorTest) {
|
| // Will be released when the dictionary is destroyed
|
| string16 str(ASCIIToUTF16("none"));
|
|
|
| - browser_sync::SyncBackendHost::Status status =
|
| - { browser_sync::SyncBackendHost::Status::OFFLINE_UNUSABLE };
|
| + browser_sync::SyncBackendHost::Status status;
|
| + status.summary = browser_sync::SyncBackendHost::Status::OFFLINE_UNUSABLE;
|
|
|
| EXPECT_CALL(service, HasSyncSetupCompleted())
|
| .WillOnce(Return(true));
|
|
|