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

Unified Diff: ui/events/test/test_event_processor.cc

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr 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 | « ui/events/test/test_event_processor.h ('k') | ui/events/test/test_event_target.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/test/test_event_processor.cc
diff --git a/ui/events/test/test_event_processor.cc b/ui/events/test/test_event_processor.cc
index 6515ca6a67cf299f79cab3e025d9a2a6c111650e..f5fbf893c98e468abe5b0ead3159899c7c4b887c 100644
--- a/ui/events/test/test_event_processor.cc
+++ b/ui/events/test/test_event_processor.cc
@@ -19,7 +19,7 @@ TestEventProcessor::TestEventProcessor()
TestEventProcessor::~TestEventProcessor() {}
-void TestEventProcessor::SetRoot(scoped_ptr<EventTarget> root) {
+void TestEventProcessor::SetRoot(std::unique_ptr<EventTarget> root) {
root_ = std::move(root);
}
« no previous file with comments | « ui/events/test/test_event_processor.h ('k') | ui/events/test/test_event_target.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698