| Index: chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.cc b/chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.cc
|
| index 72871e9563e146b80408f108a5c597bb9827e134..27ebe8c2e435daa646e1734ec3a3e41eeda373e6 100644
|
| --- a/chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.cc
|
| @@ -132,7 +132,7 @@ ImportProgressDialogGtk::ImportProgressDialogGtk(
|
|
|
| ImportProgressDialogGtk::~ImportProgressDialogGtk() {}
|
|
|
| -void ImportProgressDialogGtk::OnResponse(GtkWidget* widget, int response) {
|
| +void ImportProgressDialogGtk::OnResponse(GtkWidget* dialog, int response_id) {
|
| if (!importing_) {
|
| CloseDialog();
|
| return;
|
| @@ -140,7 +140,7 @@ void ImportProgressDialogGtk::OnResponse(GtkWidget* widget, int response) {
|
|
|
| // Only response to the dialog is to close it so we hide immediately.
|
| gtk_widget_hide_all(dialog_);
|
| - if (response == GTK_RESPONSE_REJECT)
|
| + if (response_id == GTK_RESPONSE_REJECT)
|
| importer_host_->Cancel();
|
| }
|
|
|
|
|