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/password_manager/password_store_win_unittest.cc

Issue 12851008: Create a common base class for all the webdatas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on trunk and comments Created 7 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: chrome/browser/password_manager/password_store_win_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
index 2528ba5f307daf659a910cf7086aec1aeb739d54..af88968b62569f9fbbc2167b6749f48581754251 100644
--- a/chrome/browser/password_manager/password_store_win_unittest.cc
+++ b/chrome/browser/password_manager/password_store_win_unittest.cc
@@ -115,7 +115,8 @@ class PasswordStoreWinTest : public testing::Test {
ASSERT_TRUE(login_db_->Init(temp_dir_.path().Append(
FILE_PATH_LITERAL("login_test"))));
wds_ = new WebDataService();
- ASSERT_TRUE(wds_->Init(temp_dir_.path()));
+ base::FilePath path = temp_dir_.path().AppendASCII("web_data_test");
+ wds_->Init(path);
}
virtual void TearDown() {

Powered by Google App Engine
This is Rietveld 408576698