| Index: chrome/browser/views/options/geolocation_exceptions_view.cc
|
| diff --git a/chrome/browser/views/options/geolocation_exceptions_view.cc b/chrome/browser/views/options/geolocation_exceptions_view.cc
|
| index 869fcbb7f274f9377ac5eb9c88ffeac2cb52771f..4adff3bdbab086cc42553f4657be4220e1345d56 100644
|
| --- a/chrome/browser/views/options/geolocation_exceptions_view.cc
|
| +++ b/chrome/browser/views/options/geolocation_exceptions_view.cc
|
| @@ -165,12 +165,12 @@ GeolocationExceptionsTableModel::Rows
|
| }
|
|
|
| void GeolocationExceptionsView::UpdateButtonState() {
|
| - remove_button_->SetEnabled(model_.CanRemoveExceptions(GetSelectedRows()));
|
| + remove_button_->SetEnabled(model_.CanRemoveRows(GetSelectedRows()));
|
| remove_all_button_->SetEnabled(model_.RowCount() > 0);
|
| }
|
|
|
| void GeolocationExceptionsView::Remove() {
|
| - model_.RemoveExceptions(GetSelectedRows());
|
| + model_.RemoveRows(GetSelectedRows());
|
| UpdateButtonState();
|
| }
|
|
|
|
|