diff options
-rw-r--r-- | chrome/browser/gtk/options/exceptions_page_gtk.h | 4 | ||||
-rw-r--r-- | chrome/browser/gtk/options/passwords_page_gtk.h | 4 |
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. |