| Index: chrome/browser/signin/signin_global_error_unittest.cc
|
| diff --git a/chrome/browser/signin/signin_global_error_unittest.cc b/chrome/browser/signin/signin_global_error_unittest.cc
|
| index 66d1402d0c3b3b7c7b95ec8f289251acc47033af..8f6c08ca05d3baa354a93f690c8b7a7b1c63bd8a 100644
|
| --- a/chrome/browser/signin/signin_global_error_unittest.cc
|
| +++ b/chrome/browser/signin/signin_global_error_unittest.cc
|
| @@ -112,10 +112,10 @@ TEST_F(SigninGlobalErrorTest, AuthStatusEnumerateAllErrors) {
|
| { GoogleServiceAuthError::SERVICE_ERROR, true },
|
| { GoogleServiceAuthError::WEB_LOGIN_REQUIRED, true },
|
| };
|
| - COMPILE_ASSERT(ARRAYSIZE_UNSAFE(table) == GoogleServiceAuthError::NUM_STATES,
|
| + COMPILE_ASSERT(arraysize(table) == GoogleServiceAuthError::NUM_STATES,
|
| kTable_size_does_not_match_number_of_auth_error_types);
|
|
|
| - for (size_t i = 0; i < ARRAYSIZE_UNSAFE(table); ++i) {
|
| + for (size_t i = 0; i < arraysize(table); ++i) {
|
| FakeAuthStatusProvider provider(error_controller_);
|
| provider.SetAuthError(kTestAccountId,
|
| kTestUsername,
|
|
|