Index: chrome/browser/gtk/options/content_exceptions_window_gtk.h |
=================================================================== |
--- chrome/browser/gtk/options/content_exceptions_window_gtk.h (revision 51474) |
+++ chrome/browser/gtk/options/content_exceptions_window_gtk.h (working copy) |
@@ -65,10 +65,6 @@ |
// was set to in the constructor). |
std::string GetWindowTitle() const; |
- // Gets the selected indicies in the two list stores. Indicies are returned |
- // in <list_store_, sort_list_store_> order. |
- void GetSelectedModelIndices(std::set<std::pair<int, int> >* indices); |
- |
// GTK Callbacks |
CHROMEGTK_CALLBACK_2(ContentExceptionsWindowGtk, void, |
OnTreeViewRowActivate, GtkTreePath*, GtkTreeViewColumn*); |
@@ -76,12 +72,7 @@ |
CHROMEGTK_CALLBACK_0(ContentExceptionsWindowGtk, void, |
OnTreeSelectionChanged); |
- // The list presented in |treeview_|. Separate from |list_store_|, the list |
- // that backs |sort_model_|. This separation comes so the user can sort the |
- // data on screen without changing the underlying |list_store_|. |
- GtkTreeModel* sort_list_store_; |
- |
- // The backing to |sort_list_store_|. Doesn't change when sorted. |
+ // The list presented in |treeview_|; a gobject instead of a C++ object. |
GtkListStore* list_store_; |
// The C++, views-ish, cross-platform model class that actually contains the |
@@ -105,8 +96,6 @@ |
GtkWidget* edit_button_; |
GtkWidget* remove_button_; |
GtkWidget* remove_all_button_; |
- |
- friend class ContentExceptionsWindowGtkUnittest; |
}; |
#endif // CHROME_BROWSER_GTK_OPTIONS_CONTENT_EXCEPTIONS_WINDOW_GTK_H_ |