summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views')
-rw-r--r--chrome/browser/views/options/geolocation_exceptions_view.cc4
-rw-r--r--chrome/browser/views/options/geolocation_exceptions_view.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/views/options/geolocation_exceptions_view.cc b/chrome/browser/views/options/geolocation_exceptions_view.cc
index 336e9bb..869fcbb 100644
--- a/chrome/browser/views/options/geolocation_exceptions_view.cc
+++ b/chrome/browser/views/options/geolocation_exceptions_view.cc
@@ -155,9 +155,9 @@ void GeolocationExceptionsView::Init() {
UpdateButtonState();
}
-GeolocationContentSettingsTableModel::Rows
+GeolocationExceptionsTableModel::Rows
GeolocationExceptionsView::GetSelectedRows() const {
- GeolocationContentSettingsTableModel::Rows rows;
+ GeolocationExceptionsTableModel::Rows rows;
for (views::TableView::iterator i(table_->SelectionBegin());
i != table_->SelectionEnd(); ++i)
rows.insert(*i);
diff --git a/chrome/browser/views/options/geolocation_exceptions_view.h b/chrome/browser/views/options/geolocation_exceptions_view.h
index 1a82956..417b9f3 100644
--- a/chrome/browser/views/options/geolocation_exceptions_view.h
+++ b/chrome/browser/views/options/geolocation_exceptions_view.h
@@ -7,7 +7,7 @@
#include <string>
-#include "chrome/browser/geolocation/geolocation_content_settings_table_model.h"
+#include "chrome/browser/geolocation/geolocation_exceptions_table_model.h"
#include "chrome/common/content_settings.h"
#include "views/controls/button/button.h"
#include "views/controls/table/table_view_observer.h"
@@ -22,7 +22,7 @@ class TableView;
// GeolocationExceptionsView is responsible for showing the user the set of
// site-specific geolocation permissions. The exceptions are shown in a table
-// view by way of a GeolocationContentSettingsTableModel. The user can remove
+// view by way of a GeolocationExceptionsTableModel. The user can remove
// exceptions.
// Use the ShowExceptionsWindow method to create and show a
// GeolocationExceptionsView, which is deleted when the window closes.
@@ -68,7 +68,7 @@ class GeolocationExceptionsView : public views::View,
void UpdateButtonState();
// Returns the set of selected rows.
- GeolocationContentSettingsTableModel::Rows GetSelectedRows() const;
+ GeolocationExceptionsTableModel::Rows GetSelectedRows() const;
// Removes the selected item.
void Remove();
@@ -77,7 +77,7 @@ class GeolocationExceptionsView : public views::View,
void RemoveAll();
// The model displayed in the table.
- GeolocationContentSettingsTableModel model_;
+ GeolocationExceptionsTableModel model_;
views::TableView* table_;