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

Unified Diff: content/public/browser/browser_context.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/background_tracing_manager.h ('k') | content/public/browser/browser_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_context.h
diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
index 369e5bd0ccc9e34efe29df8a9b06f58fd2e89f73..fb34686cfaa4b0ace61327a564284ae590d8f399 100644
--- a/content/public/browser/browser_context.h
+++ b/content/public/browser/browser_context.h
@@ -9,11 +9,11 @@
#include <stdint.h>
#include <map>
+#include <memory>
#include "base/callback_forward.h"
#include "base/containers/hash_tables.h"
#include "base/memory/linked_ptr.h"
-#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "base/supports_user_data.h"
#include "content/common/content_export.h"
@@ -96,7 +96,7 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
// ownership of the pointer.
static void GarbageCollectStoragePartitions(
BrowserContext* browser_context,
- scoped_ptr<base::hash_set<base::FilePath> > active_paths,
+ std::unique_ptr<base::hash_set<base::FilePath>> active_paths,
const base::Closure& done);
// DON'T USE THIS. GetDefaultStoragePartition() is going away.
@@ -104,7 +104,7 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
static content::StoragePartition* GetDefaultStoragePartition(
BrowserContext* browser_context);
- typedef base::Callback<void(scoped_ptr<BlobHandle>)> BlobCallback;
+ typedef base::Callback<void(std::unique_ptr<BlobHandle>)> BlobCallback;
// |callback| returns a nullptr scoped_ptr on failure.
static void CreateMemoryBackedBlob(BrowserContext* browser_context,
@@ -157,7 +157,7 @@ class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
// Creates a delegate to initialize a HostZoomMap and persist its information.
// This is called during creation of each StoragePartition.
- virtual scoped_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate(
+ virtual std::unique_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate(
const base::FilePath& partition_path) = 0;
// Returns the path of the directory where this context's data is stored.
« no previous file with comments | « content/public/browser/background_tracing_manager.h ('k') | content/public/browser/browser_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698