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

Unified Diff: components/autofill/content/browser/content_autofill_driver.cc

Issue 1859453002: components/autofill: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments addressed 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: components/autofill/content/browser/content_autofill_driver.cc
diff --git a/components/autofill/content/browser/content_autofill_driver.cc b/components/autofill/content/browser/content_autofill_driver.cc
index 23e11ebc46b87a66f9723d6fab6e19fd14ebae6d..e68f29d89df4f5d9cd6d3f384bc568f3a23e1c4e 100644
--- a/components/autofill/content/browser/content_autofill_driver.cc
+++ b/components/autofill/content/browser/content_autofill_driver.cc
@@ -218,7 +218,7 @@ void ContentAutofillDriver::DidNavigateFrame(
}
void ContentAutofillDriver::SetAutofillManager(
- scoped_ptr<AutofillManager> manager) {
+ std::unique_ptr<AutofillManager> manager) {
autofill_manager_ = std::move(manager);
autofill_manager_->SetExternalDelegate(&autofill_external_delegate_);
}

Powered by Google App Engine
This is Rietveld 408576698