summaryrefslogtreecommitdiffstats
path: root/chrome/browser/password_manager/password_store.cc
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 00:52:23 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 00:52:23 +0000
commit988506992537ed14bc02c00a2bae38088befcc0e (patch)
tree7aefc26a70d5c2aadd0175ee11622005e49e3a9e /chrome/browser/password_manager/password_store.cc
parenta2d82bcd63259023e5a7119cefc7d7a2faf9adb8 (diff)
downloadchromium_src-988506992537ed14bc02c00a2bae38088befcc0e.zip
chromium_src-988506992537ed14bc02c00a2bae38088befcc0e.tar.gz
chromium_src-988506992537ed14bc02c00a2bae38088befcc0e.tar.bz2
Unreviewed - revert 50177, 50181, 50184
Review URL: http://codereview.chromium.org/2814018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50185 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/password_manager/password_store.cc')
-rw-r--r--chrome/browser/password_manager/password_store.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/password_manager/password_store.cc b/chrome/browser/password_manager/password_store.cc
index 4615e42..9277b68 100644
--- a/chrome/browser/password_manager/password_store.cc
+++ b/chrome/browser/password_manager/password_store.cc
@@ -16,7 +16,6 @@ PasswordStore::PasswordStore() : handle_(0) {
}
bool PasswordStore::Init() {
- ReportMetrics();
return true;
}
@@ -24,10 +23,6 @@ void PasswordStore::ScheduleTask(Task* task) {
ChromeThread::PostTask(ChromeThread::DB, FROM_HERE, task);
}
-void PasswordStore::ReportMetrics() {
- ScheduleTask(NewRunnableMethod(this, &PasswordStore::ReportMetricsImpl));
-}
-
void PasswordStore::AddLogin(const PasswordForm& form) {
ScheduleTask(NewRunnableMethod(this, &PasswordStore::AddLoginImpl, form));
}