| Index: chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| diff --git a/chrome/browser/supervised_user/supervised_user_navigation_observer.cc b/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| index 90edc77c43c00592d65b5cd01c3b9675b3f0dc36..6bf7795a141654f922327269845a380450ec7976 100644
|
| --- a/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| +++ b/chrome/browser/supervised_user/supervised_user_navigation_observer.cc
|
| @@ -66,9 +66,9 @@ void SupervisedUserNavigationObserver::OnRequestBlocked(
|
|
|
| void SupervisedUserNavigationObserver::DidFinishNavigation(
|
| content::NavigationHandle* navigation_handle) {
|
| - // Only filter synchronous navigations (eg. pushState/popState); others will
|
| + // Only filter same page navigations (eg. pushState/popState); others will
|
| // have been filtered by the ResourceThrottle.
|
| - if (!navigation_handle->IsSynchronousNavigation())
|
| + if (!navigation_handle->IsSamePage())
|
| return;
|
|
|
| if (!navigation_handle->IsInMainFrame())
|
|
|