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

Unified Diff: content/shell/browser/shell_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/shell/browser/shell.cc ('k') | content/shell/browser/shell_browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/shell_browser_context.h
diff --git a/content/shell/browser/shell_browser_context.h b/content/shell/browser/shell_browser_context.h
index b848ca36d6764dc63a29e0265b6ca7b71ccdf48f..72ed634ba2ac6e33fa8e6cab720008c8872a33ee 100644
--- a/content/shell/browser/shell_browser_context.h
+++ b/content/shell/browser/shell_browser_context.h
@@ -5,11 +5,12 @@
#ifndef CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
#define CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
+#include <memory>
+
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/resource_context.h"
@@ -40,7 +41,7 @@ class ShellBrowserContext : public BrowserContext {
// BrowserContext implementation.
base::FilePath GetPath() const override;
- scoped_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate(
+ std::unique_ptr<ZoomLevelDelegate> CreateZoomLevelDelegate(
const base::FilePath& partition_path) override;
bool IsOffTheRecord() const override;
DownloadManagerDelegate* GetDownloadManagerDelegate() override;
@@ -104,11 +105,11 @@ class ShellBrowserContext : public BrowserContext {
bool ignore_certificate_errors() const { return ignore_certificate_errors_; }
net::NetLog* net_log() const { return net_log_; }
- scoped_ptr<ShellResourceContext> resource_context_;
+ std::unique_ptr<ShellResourceContext> resource_context_;
bool ignore_certificate_errors_;
- scoped_ptr<ShellDownloadManagerDelegate> download_manager_delegate_;
- scoped_ptr<PermissionManager> permission_manager_;
- scoped_ptr<BackgroundSyncController> background_sync_controller_;
+ std::unique_ptr<ShellDownloadManagerDelegate> download_manager_delegate_;
+ std::unique_ptr<PermissionManager> permission_manager_;
+ std::unique_ptr<BackgroundSyncController> background_sync_controller_;
private:
// Performs initialization of the ShellBrowserContext while IO is still
« no previous file with comments | « content/shell/browser/shell.cc ('k') | content/shell/browser/shell_browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698