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

Unified Diff: content/shell/browser/shell_content_browser_client.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
Index: content/shell/browser/shell_content_browser_client.h
diff --git a/content/shell/browser/shell_content_browser_client.h b/content/shell/browser/shell_content_browser_client.h
index cd8106fb530135854cd2a21a55b772ca129ca91a..24a5f582c2bc61a99aa010f1ee5e1b81c815fb29 100644
--- a/content/shell/browser/shell_content_browser_client.h
+++ b/content/shell/browser/shell_content_browser_client.h
@@ -5,11 +5,11 @@
#ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
#define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
+#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
-#include "base/memory/scoped_ptr.h"
#include "build/build_config.h"
#include "content/public/browser/content_browser_client.h"
#include "content/shell/browser/shell_resource_dispatcher_host_delegate.h"
@@ -51,7 +51,7 @@ class ShellContentBrowserClient : public ContentBrowserClient {
void SelectClientCertificate(
WebContents* web_contents,
net::SSLCertRequestInfo* cert_request_info,
- scoped_ptr<ClientCertificateDelegate> delegate) override;
+ std::unique_ptr<ClientCertificateDelegate> delegate) override;
SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate()
override;
@@ -98,7 +98,7 @@ class ShellContentBrowserClient : public ContentBrowserClient {
protected:
void set_resource_dispatcher_host_delegate(
- scoped_ptr<ShellResourceDispatcherHostDelegate> delegate) {
+ std::unique_ptr<ShellResourceDispatcherHostDelegate> delegate) {
resource_dispatcher_host_delegate_ = std::move(delegate);
}
@@ -107,8 +107,7 @@ class ShellContentBrowserClient : public ContentBrowserClient {
}
private:
-
- scoped_ptr<ShellResourceDispatcherHostDelegate>
+ std::unique_ptr<ShellResourceDispatcherHostDelegate>
resource_dispatcher_host_delegate_;
base::Closure select_client_certificate_callback_;
« no previous file with comments | « content/shell/browser/shell_browser_main_parts.h ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698