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

Unified Diff: ios/web/web_state/navigation_context_impl.h

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/navigation_callbacks_inttest.mm ('k') | ios/web/web_state/navigation_context_impl.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/web_state/navigation_context_impl.h
diff --git a/ios/web/web_state/navigation_context_impl.h b/ios/web/web_state/navigation_context_impl.h
index 11b86c1e990ea724fc5314f9ebd5b1a297feffd2..b7bb18eacd21bd5d59baac8482d1d177d68a4791 100644
--- a/ios/web/web_state/navigation_context_impl.h
+++ b/ios/web/web_state/navigation_context_impl.h
@@ -34,7 +34,7 @@ class NavigationContextImpl : public NavigationContext {
// NavigationContext overrides:
WebState* GetWebState() override;
const GURL& GetUrl() const override;
- bool IsSamePage() const override;
+ bool IsSameDocument() const override;
bool IsErrorPage() const override;
private:
@@ -46,7 +46,7 @@ class NavigationContextImpl : public NavigationContext {
WebState* web_state_ = nullptr;
GURL url_;
- bool is_same_page_ = false;
+ bool is_same_document_ = false;
bool is_error_page_ = false;
DISALLOW_COPY_AND_ASSIGN(NavigationContextImpl);
« no previous file with comments | « ios/web/web_state/navigation_callbacks_inttest.mm ('k') | ios/web/web_state/navigation_context_impl.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698