Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6190)

Unified Diff: chrome/browser/gtk/bookmark_tree_model.h

Issue 271115: Makes canceling 'bookmark all tabs' delete the folder. Or rather,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/gtk/bookmark_tree_model.h
===================================================================
--- chrome/browser/gtk/bookmark_tree_model.h (revision 29276)
+++ chrome/browser/gtk/bookmark_tree_model.h (working copy)
@@ -41,17 +41,14 @@
// |recursive| indicates whether to recurse into sub-directories (if false,
// the tree store will effectively be a list). |only_folders| indicates whether
// to include bookmarks in the tree, or to only show folders.
-// If |node_to_ignore| is non-null, a node in the tree store is not created for
-// it.
void AddToTreeStore(BookmarkModel* model, int64 selected_id,
- const BookmarkNode* node_to_ignore, GtkTreeStore* store,
- GtkTreeIter* selected_iter);
+ GtkTreeStore* store, GtkTreeIter* selected_iter);
// As above, but inserts just the tree rooted at |node| as a child of |parent|.
// If |parent| is NULL, add it at the top level.
void AddToTreeStoreAt(const BookmarkNode* node, int64 selected_id,
- const BookmarkNode* node_to_ignore, GtkTreeStore* store,
- GtkTreeIter* selected_iter, GtkTreeIter* parent);
+ GtkTreeStore* store, GtkTreeIter* selected_iter,
+ GtkTreeIter* parent);
// Makes a tree view for the store. This will take ownership of |store| and the
// returned widget has a floating reference.

Powered by Google App Engine
This is Rietveld 408576698