| Index: content/browser/frame_host/navigator_delegate.cc
 | 
| diff --git a/content/browser/frame_host/navigator_delegate.cc b/content/browser/frame_host/navigator_delegate.cc
 | 
| index 1d4e3e766a72c9b44d74a81f573471adbf41f3a9..6b067c50371553e315e6be04d1dc3c8da257e5c7 100644
 | 
| --- a/content/browser/frame_host/navigator_delegate.cc
 | 
| +++ b/content/browser/frame_host/navigator_delegate.cc
 | 
| @@ -19,10 +19,10 @@ bool NavigatorDelegate::ShouldPreserveAbortedURLs() {
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| -ScopedVector<NavigationThrottle>
 | 
| +std::vector<std::unique_ptr<NavigationThrottle>>
 | 
|  NavigatorDelegate::CreateThrottlesForNavigation(
 | 
|      NavigationHandle* navigation_handle) {
 | 
| -  return ScopedVector<NavigationThrottle>();
 | 
| +  return std::vector<std::unique_ptr<NavigationThrottle>>();
 | 
|  }
 | 
|  
 | 
|  std::unique_ptr<NavigationUIData> NavigatorDelegate::GetNavigationUIData(
 | 
| 
 |