summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk
diff options
context:
space:
mode:
authorgeorgey@chromium.org <georgey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-16 22:39:29 +0000
committergeorgey@chromium.org <georgey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-16 22:39:29 +0000
commit21e1e7dd3aaec080af56a91c7054565234f5e289 (patch)
tree41fc890083e625d86c10583da0039e7d29648efe /chrome/browser/gtk
parent913a035151d2d72c3db96674edf67a121fa1d832 (diff)
downloadchromium_src-21e1e7dd3aaec080af56a91c7054565234f5e289.zip
chromium_src-21e1e7dd3aaec080af56a91c7054565234f5e289.tar.gz
chromium_src-21e1e7dd3aaec080af56a91c7054565234f5e289.tar.bz2
Fixes first and third points in the bug "Autofill profile dialog box polish items".
Adds correct expand icons to the AutoFill dialog. The icons were added in a separate CL. Moves asynchronous access to the database inside the dialog (it now shows "Loading..." while db is being connected) Also fixes memory leak. BUG=36601 TEST=in the bug Review URL: http://codereview.chromium.org/669076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41780 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r--chrome/browser/gtk/options/content_page_gtk.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/gtk/options/content_page_gtk.cc b/chrome/browser/gtk/options/content_page_gtk.cc
index ed617c0..f911c44 100644
--- a/chrome/browser/gtk/options/content_page_gtk.cc
+++ b/chrome/browser/gtk/options/content_page_gtk.cc
@@ -179,9 +179,7 @@ void ContentPageGtk::OnPersonalDataLoaded() {
// remove ourselves as observer.
personal_data_->RemoveObserver(this);
- ShowAutoFillDialog(
- personal_data_, personal_data_->profiles(),
- personal_data_->credit_cards(), profile());
+ ShowAutoFillDialog(NULL, personal_data_, profile());
}
GtkWidget* ContentPageGtk::InitPasswordSavingGroup() {