| Index: chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc
 | 
| diff --git a/chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc b/chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc
 | 
| index 28853951e6663be552104412bc99be9fcec34e54..b8e04fe5eeae8c46eb171497115871740342c234 100644
 | 
| --- a/chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc
 | 
| +++ b/chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc
 | 
| @@ -219,7 +219,7 @@ TEST_F(SyncEngineTest, UpdateServiceState) {
 | 
|      {REMOTE_SERVICE_DISABLED, "DISABLED"},
 | 
|    };
 | 
|  
 | 
| -  for (size_t i = 0; i < ARRAYSIZE_UNSAFE(test_data); ++i) {
 | 
| +  for (size_t i = 0; i < arraysize(test_data); ++i) {
 | 
|      PostUpdateServiceState(test_data[i].state, test_data[i].description);
 | 
|      EXPECT_EQ(test_data[i].state, sync_engine()->GetCurrentState())
 | 
|          << "Expected state: REMOTE_SERVICE_" << test_data[i].description;
 | 
| 
 |