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

Unified Diff: content/public/browser/navigation_handle.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/public/browser/navigation_handle.h ('k') | content/public/browser/platform_notification_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_handle.cc
diff --git a/content/public/browser/navigation_handle.cc b/content/public/browser/navigation_handle.cc
index c013c0ee19e7ebc8b728856f68cc6483f3a460a0..ec1f0215de682cd248c093e13c2ada4dc342f2e7 100644
--- a/content/public/browser/navigation_handle.cc
+++ b/content/public/browser/navigation_handle.cc
@@ -21,16 +21,18 @@ WebContents* NavigationHandle::GetWebContents() {
}
// static
-scoped_ptr<NavigationHandle> NavigationHandle::CreateNavigationHandleForTesting(
+std::unique_ptr<NavigationHandle>
+NavigationHandle::CreateNavigationHandleForTesting(
const GURL& url,
RenderFrameHost* render_frame_host) {
- scoped_ptr<NavigationHandleImpl> handle_impl = NavigationHandleImpl::Create(
- url,
- static_cast<RenderFrameHostImpl*>(render_frame_host)->frame_tree_node(),
- false, // is_synchronous
- false, // is_srcdoc
- base::TimeTicks::Now(), 0);
- return scoped_ptr<NavigationHandle>(std::move(handle_impl));
+ std::unique_ptr<NavigationHandleImpl> handle_impl =
+ NavigationHandleImpl::Create(
+ url, static_cast<RenderFrameHostImpl*>(render_frame_host)
+ ->frame_tree_node(),
+ false, // is_synchronous
+ false, // is_srcdoc
+ base::TimeTicks::Now(), 0);
+ return std::unique_ptr<NavigationHandle>(std::move(handle_impl));
}
} // namespace content
« no previous file with comments | « content/public/browser/navigation_handle.h ('k') | content/public/browser/platform_notification_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698