commit | 37a447b86b8ac98c5827701e765de9558c6c50e7 | [log] [tgz] |
---|---|---|
author | viettrungluu <[email protected]> | Thu Oct 16 18:23:27 2014 |
committer | Commit bot <[email protected]> | Thu Oct 16 18:24:13 2014 |
tree | e413b48d7cd1a4e91d9b701e691ad8e6554f18d5 | |
parent | ac59b2cc31ddb0bf15074e6253fbf73196a39d69 [diff] [blame] |
Convert ARRAYSIZE_UNSAFE -> arraysize in components/. BUG=423134 Review URL: https://codereview.chromium.org/658993002 Cr-Commit-Position: refs/heads/master@{#299934}
diff --git a/components/variations/metrics_util_unittest.cc b/components/variations/metrics_util_unittest.cc index 4f32494..46f50ca 100644 --- a/components/variations/metrics_util_unittest.cc +++ b/components/variations/metrics_util_unittest.cc
@@ -24,7 +24,7 @@ {"0123456789ABCDEF", 348858318U} }; - for (size_t i = 0; i < ARRAYSIZE_UNSAFE(known_hashes); ++i) + for (size_t i = 0; i < arraysize(known_hashes); ++i) EXPECT_EQ(known_hashes[i].hash_value, HashName(known_hashes[i].name)); }