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

Unified Diff: chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h

Issue 2253233005: Change ScopedVector to vector<unique_ptr> in the password's UI code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android+ Created 4 years, 4 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/cocoa/passwords/base_passwords_controller_test.h
diff --git a/chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h b/chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h
index 27c20724b0ada7dde853fe3c92da799391e439d5..e47288a5bb35cf93be6551b28d17cb06fb825075 100644
--- a/chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h
+++ b/chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h
@@ -27,7 +27,8 @@ class PasswordsModelDelegateMock;
class ManagePasswordsControllerTest : public CocoaProfileTest {
public:
- using VectorConstFormPtr = std::vector<const autofill::PasswordForm*>;
+ using VectorConstFormPtr =
+ std::vector<std::unique_ptr<autofill::PasswordForm>>;
ManagePasswordsControllerTest();
~ManagePasswordsControllerTest() override;

Powered by Google App Engine
This is Rietveld 408576698