| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 8e03cab4f9d8497878c5c8bb090683d560892004..f6a6a5ba4a9ccf21603ab4e3b0bf2c7e1400a5b9 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -4494,6 +4494,12 @@ ScopedVector<NavigationThrottle> WebContentsImpl::CreateThrottlesForNavigation(
|
| navigation_handle);
|
| }
|
|
|
| +std::unique_ptr<NavigationUIData> WebContentsImpl::GetNavigationUIData(
|
| + NavigationHandle* navigation_handle) {
|
| + DCHECK(IsBrowserSideNavigationEnabled());
|
| + return GetContentClient()->browser()->GetNavigationUIData(navigation_handle);
|
| +}
|
| +
|
| void WebContentsImpl::DidCancelLoading() {
|
| controller_.DiscardNonCommittedEntries();
|
|
|
|
|