diff options
Diffstat (limited to 'chrome/browser/google_url_tracker_unittest.cc')
-rw-r--r-- | chrome/browser/google_url_tracker_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/google_url_tracker_unittest.cc b/chrome/browser/google_url_tracker_unittest.cc index e4a9aac..80c4976 100644 --- a/chrome/browser/google_url_tracker_unittest.cc +++ b/chrome/browser/google_url_tracker_unittest.cc @@ -24,7 +24,7 @@ TEST(GoogleURLTrackerTest, CheckAndConvertURL) { { "http://google/", false, "", }, }; - for (size_t i = 0; i < ARRAYSIZE_UNSAFE(data); ++i) { + for (size_t i = 0; i < arraysize(data); ++i) { GURL base_url; const bool can_convert = GoogleURLTracker::CheckAndConvertToGoogleBaseURL( GURL(data[i].source_url), &base_url); |