commit | ec48d7afb5df4c5d1c3b49afef1a4da249711fef | [log] [tgz] |
---|---|---|
author | Jeremy Roman <[email protected]> | Thu Mar 01 17:35:09 2018 |
committer | Commit Bot <[email protected]> | Thu Mar 01 17:35:09 2018 |
tree | c8b79c1891d229d8e78f257c1c2801652db0b287 | |
parent | 680972d7f662ac2414aaa8fa73f66cacf9e88c9b [diff] [blame] |
Replace base::MakeUnique with std::make_unique in chrome/browser/. base/memory/ptr_util.h includes will be cleaned up later. Generated by: git grep -l base::MakeUnique chrome/browser/ | xargs perl -pi -e 's/base::MakeUnique/std::make_unique/' Presubmit bypassed due to unrelated existing errors in touched lines. Bug: 755727 No-Presubmit: true Change-Id: Ib4480069b2a369566e6ae4a3d426a0797f5984bb Reviewed-on: https://chromium-review.googlesource.com/943461 Commit-Queue: Nico Weber <[email protected]> Reviewed-by: Nico Weber <[email protected]> Cr-Commit-Position: refs/heads/master@{#540201}
diff --git a/chrome/browser/plugins/plugin_info_host_impl.cc b/chrome/browser/plugins/plugin_info_host_impl.cc index 53a4b76..a033a89 100644 --- a/chrome/browser/plugins/plugin_info_host_impl.cc +++ b/chrome/browser/plugins/plugin_info_host_impl.cc
@@ -432,7 +432,7 @@ output->status = chrome::mojom::PluginStatus::kRestartRequired; } #endif - plugin_metadata = base::MakeUnique<PluginMetadata>( + plugin_metadata = std::make_unique<PluginMetadata>( cus_plugin_info->id, cus_plugin_info->name, false, GURL(), GURL(), base::ASCIIToUTF16(cus_plugin_info->id), std::string()); }