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

Unified Diff: content/shell/browser/shell_net_log.cc

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_net_log.h ('k') | content/shell/browser/shell_platform_data_aura.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/shell_net_log.cc
diff --git a/content/shell/browser/shell_net_log.cc b/content/shell/browser/shell_net_log.cc
index 6e00a3c3f0bbb2ccfec35202b08ae3165e6d335e..a765603acaa56bf5694fc36f688ffb37dd3d83a6 100644
--- a/content/shell/browser/shell_net_log.cc
+++ b/content/shell/browser/shell_net_log.cc
@@ -21,7 +21,8 @@ namespace content {
namespace {
base::DictionaryValue* GetShellConstants(const std::string& app_name) {
- scoped_ptr<base::DictionaryValue> constants_dict = net::GetNetConstants();
+ std::unique_ptr<base::DictionaryValue> constants_dict =
+ net::GetNetConstants();
// Add a dictionary with client information
base::DictionaryValue* dict = new base::DictionaryValue();
@@ -64,7 +65,7 @@ ShellNetLog::ShellNetLog(const std::string& app_name) {
LOG(ERROR) << "Could not open file " << log_path.value()
<< " for net logging";
} else {
- scoped_ptr<base::Value> constants(GetShellConstants(app_name));
+ std::unique_ptr<base::Value> constants(GetShellConstants(app_name));
write_to_file_observer_.reset(new net::WriteToFileNetLogObserver());
write_to_file_observer_->StartObserving(this, std::move(file),
constants.get(), nullptr);
« no previous file with comments | « content/shell/browser/shell_net_log.h ('k') | content/shell/browser/shell_platform_data_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698