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

Unified Diff: content/browser/plugin_data_remover_impl.cc

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/plugin_data_remover_impl.cc
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc
index 5299f6bfaeaf65636d89220ebd1df8ee30943f0d..e9273995d5279ade27004aa72d87bb5020009fe6 100644
--- a/content/browser/plugin_data_remover_impl.cc
+++ b/content/browser/plugin_data_remover_impl.cc
@@ -234,7 +234,7 @@ class PluginDataRemoverImpl::Context
event_->Signal();
}
- scoped_ptr<base::WaitableEvent> event_;
+ std::unique_ptr<base::WaitableEvent> event_;
// The point in time when we start removing data.
base::Time remove_start_time_;
// The point in time from which on we remove data.
@@ -250,7 +250,7 @@ class PluginDataRemoverImpl::Context
// The channel is NULL until we have opened a connection to the plugin
// process.
- scoped_ptr<IPC::Channel> channel_;
+ std::unique_ptr<IPC::Channel> channel_;
};
« no previous file with comments | « content/browser/notifications/platform_notification_context_unittest.cc ('k') | content/browser/plugin_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698