| Index: chrome/browser/chrome_content_browser_client.h
|
| diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
|
| index 6d6f8bb57ab5d0cf5c7e17a88014ab2f4bfc002b..c314117a474b3e9950bb8b37422dee802f01e7ce 100644
|
| --- a/chrome/browser/chrome_content_browser_client.h
|
| +++ b/chrome/browser/chrome_content_browser_client.h
|
| @@ -245,7 +245,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
|
| void GetAdditionalFileSystemBackends(
|
| content::BrowserContext* browser_context,
|
| const base::FilePath& storage_partition_path,
|
| - ScopedVector<storage::FileSystemBackend>* additional_backends) override;
|
| + std::vector<std::unique_ptr<storage::FileSystemBackend>>*
|
| + additional_backends) override;
|
| content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
|
| content::TracingDelegate* GetTracingDelegate() override;
|
| bool IsPluginAllowedToCallRequestOSFileHandle(
|
| @@ -295,8 +296,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
|
| content::PresentationServiceDelegate* GetPresentationServiceDelegate(
|
| content::WebContents* web_contents) override;
|
| void RecordURLMetric(const std::string& metric, const GURL& url) override;
|
| - ScopedVector<content::NavigationThrottle> CreateThrottlesForNavigation(
|
| - content::NavigationHandle* handle) override;
|
| + std::vector<std::unique_ptr<content::NavigationThrottle>>
|
| + CreateThrottlesForNavigation(content::NavigationHandle* handle) override;
|
| std::unique_ptr<content::NavigationUIData> GetNavigationUIData(
|
| content::NavigationHandle* navigation_handle) override;
|
| std::unique_ptr<content::MemoryCoordinatorDelegate>
|
|
|