| Index: chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h
|
| diff --git a/chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h b/chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h
|
| index 3e9522ac3faf9cd1a964f717566cb9d6fbb21b7f..b2abbd73742ac0ae37b5e54f8df5e8855162b5c4 100644
|
| --- a/chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h
|
| +++ b/chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_TESTER_H_
|
| #define CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_TESTER_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
|
|
| namespace content {
|
| class WebContents;
|
| @@ -19,7 +19,8 @@ class CardUnmaskPromptView;
|
| class CardUnmaskPromptViewTester {
|
| public:
|
| // Gets a AutofillCardUnmaskPromptViewTester for |view|.
|
| - static scoped_ptr<CardUnmaskPromptViewTester> For(CardUnmaskPromptView* view);
|
| + static std::unique_ptr<CardUnmaskPromptViewTester> For(
|
| + CardUnmaskPromptView* view);
|
|
|
| virtual ~CardUnmaskPromptViewTester() {}
|
|
|
|
|