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

Unified Diff: content/public/browser/resource_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/render_widget_host_view.h ('k') | content/public/browser/resource_dispatcher_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/resource_context.h
diff --git a/content/public/browser/resource_context.h b/content/public/browser/resource_context.h
index 5a9419b8ddf61d363d6de26abb984efab4eaa4f5..039ad94006ded4e49f25ad2a3784d3ed9d7e6b40 100644
--- a/content/public/browser/resource_context.h
+++ b/content/public/browser/resource_context.h
@@ -7,10 +7,10 @@
#include <stdint.h>
+#include <memory>
#include <string>
#include "base/callback.h"
-#include "base/memory/scoped_ptr.h"
#include "base/supports_user_data.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
@@ -43,7 +43,7 @@ class CONTENT_EXPORT ResourceContext : public base::SupportsUserData {
virtual net::URLRequestContext* GetRequestContext() = 0;
// Get platform ClientCertStore. May return nullptr.
- virtual scoped_ptr<net::ClientCertStore> CreateClientCertStore();
+ virtual std::unique_ptr<net::ClientCertStore> CreateClientCertStore();
// Create a platform KeygenHandler and pass it to |callback|. The |callback|
// may be run synchronously.
@@ -51,7 +51,8 @@ class CONTENT_EXPORT ResourceContext : public base::SupportsUserData {
uint32_t key_size_in_bits,
const std::string& challenge_string,
const GURL& url,
- const base::Callback<void(scoped_ptr<net::KeygenHandler>)>& callback);
+ const base::Callback<void(std::unique_ptr<net::KeygenHandler>)>&
+ callback);
// Returns a callback that can be invoked to get a random salt
// string that is used for creating media device IDs. The salt
« no previous file with comments | « content/public/browser/render_widget_host_view.h ('k') | content/public/browser/resource_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698