| 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);
|
|
|