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

Unified Diff: chrome/browser/ui/autofill/credit_card_scanner_view.cc

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: chrome/browser/ui/autofill/credit_card_scanner_view.cc
diff --git a/chrome/browser/ui/autofill/credit_card_scanner_view.cc b/chrome/browser/ui/autofill/credit_card_scanner_view.cc
index 8e6fab06d81074bbc105ba7405dde0035adc3ee1..de61143cc1bfb8d8b1c369500ab1f1922a9af9c4 100644
--- a/chrome/browser/ui/autofill/credit_card_scanner_view.cc
+++ b/chrome/browser/ui/autofill/credit_card_scanner_view.cc
@@ -16,10 +16,10 @@ bool CreditCardScannerView::CanShow() {
}
// static
-scoped_ptr<CreditCardScannerView> CreditCardScannerView::Create(
+std::unique_ptr<CreditCardScannerView> CreditCardScannerView::Create(
const base::WeakPtr<CreditCardScannerViewDelegate>& delegate,
content::WebContents* web_contents) {
- return scoped_ptr<CreditCardScannerView>();
+ return std::unique_ptr<CreditCardScannerView>();
}
#endif // !defined(OS_ANDROID)
« no previous file with comments | « chrome/browser/ui/autofill/credit_card_scanner_view.h ('k') | chrome/browser/ui/autofill/data_model_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698