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

Unified Diff: content/shell/browser/shell_net_log.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_javascript_dialog_manager.h ('k') | content/shell/browser/shell_net_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/shell_net_log.h
diff --git a/content/shell/browser/shell_net_log.h b/content/shell/browser/shell_net_log.h
index b61edf258c0009a79236c76c98fb2c48c9525e80..3f4cf87734527484c2321494ad6f867dbea4cd6f 100644
--- a/content/shell/browser/shell_net_log.h
+++ b/content/shell/browser/shell_net_log.h
@@ -5,10 +5,10 @@
#ifndef CONTENT_SHELL_BROWSER_SHELL_NET_LOG_H_
#define CONTENT_SHELL_BROWSER_SHELL_NET_LOG_H_
+#include <memory>
#include <string>
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "net/log/write_to_file_net_log_observer.h"
namespace content {
@@ -19,7 +19,7 @@ class ShellNetLog : public net::NetLog {
~ShellNetLog() override;
private:
- scoped_ptr<net::WriteToFileNetLogObserver> write_to_file_observer_;
+ std::unique_ptr<net::WriteToFileNetLogObserver> write_to_file_observer_;
DISALLOW_COPY_AND_ASSIGN(ShellNetLog);
};
« no previous file with comments | « content/shell/browser/shell_javascript_dialog_manager.h ('k') | content/shell/browser/shell_net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698