| Index: chrome/browser/gtk/bookmark_manager_gtk.h
|
| ===================================================================
|
| --- chrome/browser/gtk/bookmark_manager_gtk.h (revision 19623)
|
| +++ chrome/browser/gtk/bookmark_manager_gtk.h (working copy)
|
| @@ -110,6 +110,17 @@
|
| // Stick update the right store to reflect |row| from |right_tree_model_|.
|
| void AddNodeToRightStore(int row);
|
|
|
| + // Set the size of a column based on the user prefs, and also sets the sizing
|
| + // properties of the column.
|
| + void SizeColumn(GtkTreeViewColumn* column,
|
| + const wchar_t* prefname);
|
| +
|
| + // Calls SizeColumn() on each of the right tree view columns.
|
| + void SizeColumns();
|
| +
|
| + // Save the column widths into the pref service.
|
| + void SaveColumnConfiguration();
|
| +
|
| GtkTreeSelection* left_selection() {
|
| return gtk_tree_view_get_selection(GTK_TREE_VIEW(left_tree_view_));
|
| }
|
| @@ -217,6 +228,8 @@
|
| };
|
| GtkTreeStore* left_store_;
|
| GtkListStore* right_store_;
|
| + GtkTreeViewColumn* title_column_;
|
| + GtkTreeViewColumn* url_column_;
|
| GtkTreeViewColumn* path_column_;
|
| scoped_ptr<BookmarkTableModel> right_tree_model_;
|
|
|
|
|