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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_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/autofill_dialog_view_tester.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_view_tester.h b/chrome/browser/ui/autofill/autofill_dialog_view_tester.h
index 6b222f3a23dc05ab557c416d3af87592bba5d579..535caf2bd731eb6fa7892b9bba7072ff32499296 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_view_tester.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_view_tester.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_TESTER_H_
#define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_TESTER_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "base/strings/string16.h"
#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
#include "components/autofill/core/browser/dialog_section.h"
@@ -24,7 +25,8 @@ class AutofillDialogView;
class AutofillDialogViewTester {
public:
// Gets a AutofillDialogViewTester for |view|.
- static scoped_ptr<AutofillDialogViewTester> For(AutofillDialogView* view);
+ static std::unique_ptr<AutofillDialogViewTester> For(
+ AutofillDialogView* view);
virtual ~AutofillDialogViewTester() {}

Powered by Google App Engine
This is Rietveld 408576698