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

Unified Diff: components/password_manager/core/browser/statistics_table_unittest.cc

Issue 1852093002: components/password_manager: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and revert an accidental .proto change Created 4 years, 9 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: components/password_manager/core/browser/statistics_table_unittest.cc
diff --git a/components/password_manager/core/browser/statistics_table_unittest.cc b/components/password_manager/core/browser/statistics_table_unittest.cc
index 4736ceaf3636aa04cc4c975512dfaa8e5b4f5e3d..8e348a05e0b31a5ddda713b1b0f976dbdce43195 100644
--- a/components/password_manager/core/browser/statistics_table_unittest.cc
+++ b/components/password_manager/core/browser/statistics_table_unittest.cc
@@ -50,8 +50,8 @@ class StatisticsTableTest : public testing::Test {
private:
base::ScopedTempDir temp_dir_;
- scoped_ptr<sql::Connection> connection_;
- scoped_ptr<StatisticsTable> db_;
+ std::unique_ptr<sql::Connection> connection_;
+ std::unique_ptr<StatisticsTable> db_;
InteractionsStats test_data_;
};

Powered by Google App Engine
This is Rietveld 408576698