| Index: chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc
|
| diff --git a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc
|
| index 8e5c44789a20529ae35b5cfc7c1d0f7db4e3ed13..40f2d3ac05bc3094c880d7be566fddcb035dd10d 100644
|
| --- a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc
|
| +++ b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc
|
| @@ -15,7 +15,7 @@
|
| #include "extensions/common/extension.h"
|
|
|
| #if defined(ENABLE_MANAGED_USERS)
|
| -#include "chrome/browser/managed_mode/managed_mode_navigation_observer.h"
|
| +#include "chrome/browser/supervised_user/supervised_user_navigation_observer.h"
|
| #endif
|
|
|
| using content::NavigationEntry;
|
| @@ -81,8 +81,8 @@ bool TabContentsSyncedTabDelegate::ProfileIsSupervised() const {
|
| const std::vector<const content::NavigationEntry*>*
|
| TabContentsSyncedTabDelegate::GetBlockedNavigations() const {
|
| #if defined(ENABLE_MANAGED_USERS)
|
| - ManagedModeNavigationObserver* navigation_observer =
|
| - ManagedModeNavigationObserver::FromWebContents(web_contents_);
|
| + SupervisedUserNavigationObserver* navigation_observer =
|
| + SupervisedUserNavigationObserver::FromWebContents(web_contents_);
|
| DCHECK(navigation_observer);
|
| return navigation_observer->blocked_navigations();
|
| #else
|
|
|