| Index: chrome/browser/ui/autofill/credit_card_scanner_controller.cc
|
| diff --git a/chrome/browser/ui/autofill/credit_card_scanner_controller.cc b/chrome/browser/ui/autofill/credit_card_scanner_controller.cc
|
| index 55ed37bb4bcb0698c5482b01a10635b74b7977e5..9bff3b0dab7e058caac922504aa9b4bd4a45cd2c 100644
|
| --- a/chrome/browser/ui/autofill/credit_card_scanner_controller.cc
|
| +++ b/chrome/browser/ui/autofill/credit_card_scanner_controller.cc
|
| @@ -4,10 +4,11 @@
|
|
|
| #include "chrome/browser/ui/autofill/credit_card_scanner_controller.h"
|
|
|
| +#include <memory>
|
| +
|
| #include "base/callback.h"
|
| #include "base/logging.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/strings/string16.h"
|
| #include "base/time/time.h"
|
| @@ -58,7 +59,7 @@ class Controller : public CreditCardScannerViewDelegate,
|
| }
|
|
|
| // The view for the credit card scanner.
|
| - scoped_ptr<CreditCardScannerView> view_;
|
| + std::unique_ptr<CreditCardScannerView> view_;
|
|
|
| // The callback to be invoked when scanning completes successfully.
|
| AutofillClient::CreditCardScanCallback callback_;
|
|
|