summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-29 20:51:58 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-29 20:51:58 +0000
commit7c37e4c641007ccbb666be127926e7512b0db89b (patch)
tree2c1613ca733dafa0e35eb8102ebf910cd8f130d8
parenta1fb7c005bcbe61577e0cf275f4bf6a612ac3b6a (diff)
downloadchromium_src-7c37e4c641007ccbb666be127926e7512b0db89b.zip
chromium_src-7c37e4c641007ccbb666be127926e7512b0db89b.tar.gz
chromium_src-7c37e4c641007ccbb666be127926e7512b0db89b.tar.bz2
Gtk password dialog: Initialize pending_login_query_.
BUG=8205 Review URL: http://codereview.chromium.org/159603 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21991 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/gtk/options/exceptions_page_gtk.h4
-rw-r--r--chrome/browser/gtk/options/passwords_page_gtk.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/gtk/options/exceptions_page_gtk.h b/chrome/browser/gtk/options/exceptions_page_gtk.h
index ae3142f..67ae0a7 100644
--- a/chrome/browser/gtk/options/exceptions_page_gtk.h
+++ b/chrome/browser/gtk/options/exceptions_page_gtk.h
@@ -50,7 +50,9 @@ class ExceptionsPageGtk {
// A short class to mediate requests to the password store.
class ExceptionListPopulater : public PasswordStoreConsumer {
public:
- explicit ExceptionListPopulater(ExceptionsPageGtk* page) : page_(page) {
+ explicit ExceptionListPopulater(ExceptionsPageGtk* page)
+ : page_(page),
+ pending_login_query_(0) {
}
// Send a query to the password store to populate an ExceptionsPageGtk.
diff --git a/chrome/browser/gtk/options/passwords_page_gtk.h b/chrome/browser/gtk/options/passwords_page_gtk.h
index 06a0dcb..891f36b 100644
--- a/chrome/browser/gtk/options/passwords_page_gtk.h
+++ b/chrome/browser/gtk/options/passwords_page_gtk.h
@@ -61,7 +61,9 @@ class PasswordsPageGtk {
// A short class to mediate requests to the password store.
class PasswordListPopulater : public PasswordStoreConsumer {
public:
- explicit PasswordListPopulater(PasswordsPageGtk* page) : page_(page) {
+ explicit PasswordListPopulater(PasswordsPageGtk* page)
+ : page_(page),
+ pending_login_query_(0) {
}
// Send a query to the password store to populate a PasswordsPageGtk.