| Index: chrome/browser/gtk/options/geolocation_content_exceptions_window.cc
|
| diff --git a/chrome/browser/gtk/options/geolocation_content_exceptions_window.cc b/chrome/browser/gtk/options/geolocation_content_exceptions_window.cc
|
| index 79cfe2051d17be2987d48f17ee82565785371f65..e1e28e435641ea5c7643ba2ab7b95b1f07feccce 100644
|
| --- a/chrome/browser/gtk/options/geolocation_content_exceptions_window.cc
|
| +++ b/chrome/browser/gtk/options/geolocation_content_exceptions_window.cc
|
| @@ -141,7 +141,7 @@ void GeolocationContentExceptionsWindow::UpdateButtonState() {
|
|
|
| GeolocationExceptionsTableModel::Rows rows;
|
| GetSelectedRows(&rows);
|
| - gtk_widget_set_sensitive(remove_button_, model_->CanRemoveExceptions(rows));
|
| + gtk_widget_set_sensitive(remove_button_, model_->CanRemoveRows(rows));
|
| gtk_widget_set_sensitive(remove_all_button_, row_count > 0);
|
| }
|
|
|
| @@ -156,7 +156,7 @@ void GeolocationContentExceptionsWindow::GetSelectedRows(
|
| void GeolocationContentExceptionsWindow::Remove(GtkWidget* widget) {
|
| GeolocationExceptionsTableModel::Rows rows;
|
| GetSelectedRows(&rows);
|
| - model_->RemoveExceptions(rows);
|
| + model_->RemoveRows(rows);
|
| UpdateButtonState();
|
| }
|
|
|
|
|