Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 2618393003: Remove ScopedVector from ContentBrowserClient. (Closed)
Patch Set: cleaner a bit Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7c02ea952f1947a89bcb3bb6ccf7665ba9b45549..1ab0b6807803e34ecf7bb84083efa80e36802d6d 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -4535,7 +4535,8 @@ void WebContentsImpl::DidChangeLoadProgress() {
min_delay);
}
-ScopedVector<NavigationThrottle> WebContentsImpl::CreateThrottlesForNavigation(
+std::vector<std::unique_ptr<NavigationThrottle>>
+WebContentsImpl::CreateThrottlesForNavigation(
NavigationHandle* navigation_handle) {
return GetContentClient()->browser()->CreateThrottlesForNavigation(
navigation_handle);

Powered by Google App Engine
This is Rietveld 408576698