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

Unified Diff: chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h

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/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() {}
« no previous file with comments | « chrome/browser/ui/autofill/card_unmask_prompt_view_browsertest.cc ('k') | chrome/browser/ui/autofill/chrome_autofill_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698