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

Unified Diff: content/public/browser/navigation_handle.h

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_entry.h ('k') | content/public/browser/navigation_handle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_handle.h
diff --git a/content/public/browser/navigation_handle.h b/content/public/browser/navigation_handle.h
index cd1e6ab5ea748c602a7970b6a0e145a215084f30..124ef31b0ab042f9db51b1a4a4257c009f8a9dff 100644
--- a/content/public/browser/navigation_handle.h
+++ b/content/public/browser/navigation_handle.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_
#define CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "content/common/content_export.h"
#include "content/public/browser/navigation_throttle.h"
#include "content/public/common/referrer.h"
@@ -139,7 +140,7 @@ class CONTENT_EXPORT NavigationHandle {
//
// The following methods should be used exclusively for writing unit tests.
- static scoped_ptr<NavigationHandle> CreateNavigationHandleForTesting(
+ static std::unique_ptr<NavigationHandle> CreateNavigationHandleForTesting(
const GURL& url,
RenderFrameHost* render_frame_host);
@@ -151,7 +152,7 @@ class CONTENT_EXPORT NavigationHandle {
// ContentBrowserClient::CreateThrottlesForNavigation. This ensures proper
// ordering of the throttles.
virtual void RegisterThrottleForTesting(
- scoped_ptr<NavigationThrottle> navigation_throttle) = 0;
+ std::unique_ptr<NavigationThrottle> navigation_throttle) = 0;
// Simulates the network request starting.
virtual NavigationThrottle::ThrottleCheckResult
« no previous file with comments | « content/public/browser/navigation_entry.h ('k') | content/public/browser/navigation_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698