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

Unified Diff: chrome/browser/password_manager/password_store_x_unittest.cc

Issue 6646051: Fix DCHECK, memory leak, and refactor PasswordStore to use CancelableRequest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git try works all platforms now. Created 9 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_x_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
index a97968551ec819ed6fb30563bfbb1a4735a0c85e..b8d4fed7dc7bf4a6b4d6aaf1b7b63b72899d5b48 100644
--- a/chrome/browser/password_manager/password_store_x_unittest.cc
+++ b/chrome/browser/password_manager/password_store_x_unittest.cc
@@ -36,7 +36,8 @@ namespace {
class MockPasswordStoreConsumer : public PasswordStoreConsumer {
public:
MOCK_METHOD2(OnPasswordStoreRequestDone,
- void(int, const std::vector<PasswordForm*>&));
+ void(PasswordStore::Handle,
+ const std::vector<webkit_glue::PasswordForm*>&));
James Hawkins 2011/03/16 22:39:35 You have a 'using webkit_glue::PasswordForm' right
Sheridan Rawlins 2011/03/20 08:13:11 Done.
};
class MockWebDataServiceConsumer : public WebDataServiceConsumer {

Powered by Google App Engine
This is Rietveld 408576698