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

Unified Diff: ios/web/web_state/web_state_observer_bridge_unittest.mm

Issue 2734293002: s/IsSamePage/IsSameDocument for NavigationContext. (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 | « ios/web/web_state/web_state_impl_unittest.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/web_state/web_state_observer_bridge_unittest.mm
diff --git a/ios/web/web_state/web_state_observer_bridge_unittest.mm b/ios/web/web_state/web_state_observer_bridge_unittest.mm
index f9b5f06acae100ba6fa02dedd789894d9fa0461b..5b548a7fd1d45d6c2470153655a5075d0de13b86 100644
--- a/ios/web/web_state/web_state_observer_bridge_unittest.mm
+++ b/ios/web/web_state/web_state_observer_bridge_unittest.mm
@@ -57,7 +57,7 @@ TEST_F(WebStateObserverBridgeTest, DidFinishNavigation) {
[observer_ didFinishNavigationInfo]->context.get();
ASSERT_TRUE(actual_context);
EXPECT_EQ(&test_web_state_, actual_context->GetWebState());
- EXPECT_EQ(context->IsSamePage(), actual_context->IsSamePage());
+ EXPECT_EQ(context->IsSameDocument(), actual_context->IsSameDocument());
EXPECT_EQ(context->IsErrorPage(), actual_context->IsErrorPage());
EXPECT_EQ(context->GetUrl(), actual_context->GetUrl());
}
« no previous file with comments | « ios/web/web_state/web_state_impl_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698