Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2161)

Unified Diff: chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc

Issue 2228913003: Move part of browsing data counter text util method to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add blank line Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc b/chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc
index c00812865fe05159ddc9e5a7e3e4f90ebbc67cca..bc5316043dd30aeef33d63523b90ba727c3f21e2 100644
--- a/chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_counter_utils_unittest.cc
@@ -77,7 +77,7 @@ TEST_F(BrowsingDataCounterUtilsTest, AutofillCounterResult) {
test_case.num_suggestions
));
- base::string16 output = GetCounterTextFromResult(&result);
+ base::string16 output = GetChromeCounterTextFromResult(&result);
msramek 2016/08/09 16:28:32 The autofill-related functionality now lives in Ge
ioanap 2016/08/10 09:34:37 Done.
msramek 2016/08/10 09:59:50 Just for the record - for maximum pedantness, this
ioanap 2016/08/10 11:12:32 Acknowledged. Thank you!
EXPECT_EQ(output, base::ASCIIToUTF16(test_case.expected_output));
}
}
@@ -120,7 +120,7 @@ TEST_F(BrowsingDataCounterUtilsTest, HostedAppsCounterResult) {
apps.size(),
examples);
- base::string16 output = GetCounterTextFromResult(&result);
+ base::string16 output = GetChromeCounterTextFromResult(&result);
EXPECT_EQ(output, base::ASCIIToUTF16(test_case.expected_output));
}
}

Powered by Google App Engine
This is Rietveld 408576698