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

Unified Diff: content/test/content_browser_test_utils_internal.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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
« no previous file with comments | « content/test/browser_side_navigation_test_utils.cc ('k') | content/test/content_test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/content_browser_test_utils_internal.cc
diff --git a/content/test/content_browser_test_utils_internal.cc b/content/test/content_browser_test_utils_internal.cc
index 7e619364361261eb4b4edeca7737053713f34f8a..f6fbd433d30b504b88ca56d4c805754d9157bb88 100644
--- a/content/test/content_browser_test_utils_internal.cc
+++ b/content/test/content_browser_test_utils_internal.cc
@@ -397,9 +397,10 @@ void TestNavigationManager::DidStartNavigation(NavigationHandle* handle) {
return;
handle_ = handle;
- scoped_ptr<NavigationThrottle> throttle(new TestNavigationManagerThrottle(
- handle_, base::Bind(&TestNavigationManager::OnWillStartRequest,
- weak_factory_.GetWeakPtr())));
+ std::unique_ptr<NavigationThrottle> throttle(
+ new TestNavigationManagerThrottle(
+ handle_, base::Bind(&TestNavigationManager::OnWillStartRequest,
+ weak_factory_.GetWeakPtr())));
handle_->RegisterThrottleForTesting(std::move(throttle));
}
« no previous file with comments | « content/test/browser_side_navigation_test_utils.cc ('k') | content/test/content_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698