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

Unified Diff: components/navigation_metrics/navigation_metrics_unittest.cc

Issue 2793733002: s/samePage/sameDocument in navigation_metrics_unittest.cc. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/navigation_metrics/navigation_metrics_unittest.cc
diff --git a/components/navigation_metrics/navigation_metrics_unittest.cc b/components/navigation_metrics/navigation_metrics_unittest.cc
index de09f6c5a67b196b0bceede1751d958fe7bf0b4d..c4514a3c806371fb4b60ea6628eb1ca639ed4f50 100644
--- a/components/navigation_metrics/navigation_metrics_unittest.cc
+++ b/components/navigation_metrics/navigation_metrics_unittest.cc
@@ -18,7 +18,7 @@ const char* const kMainFrameSchemeDifferentPage =
namespace navigation_metrics {
-TEST(NavigationMetrics, MainFrameSchemeDifferentPage) {
+TEST(NavigationMetrics, MainFrameSchemeDifferentDocument) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), false, false, false);
@@ -29,7 +29,7 @@ TEST(NavigationMetrics, MainFrameSchemeDifferentPage) {
test.ExpectUniqueSample(kMainFrameSchemeDifferentPage, 1 /* http */, 1);
}
-TEST(NavigationMetrics, MainFrameSchemeSamePage) {
+TEST(NavigationMetrics, MainFrameSchemeSameDocument) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), true, false, false);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698