summaryrefslogtreecommitdiffstats
path: root/chrome/browser/bookmarks/bookmark_editor.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-28 16:46:35 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-28 16:46:35 +0000
commit97a056463c8906c9cf430de764b1ae3b482eeeed (patch)
treec8c9a4ecfe540b3f15e0cf85a87ae52e27312d39 /chrome/browser/bookmarks/bookmark_editor.h
parentf0febe304989583b09a5b3aaa301d8bbe611a766 (diff)
downloadchromium_src-97a056463c8906c9cf430de764b1ae3b482eeeed.zip
chromium_src-97a056463c8906c9cf430de764b1ae3b482eeeed.tar.gz
chromium_src-97a056463c8906c9cf430de764b1ae3b482eeeed.tar.bz2
Get rid of BookmarkEditor::Show()'s BookmarkEditor::Handler argument.
Still to do: get rid of things which hang on to a handler just so they can pass it to Show(). BUG=38908 TEST=everything still works Review URL: http://codereview.chromium.org/1795007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_editor.h')
-rw-r--r--chrome/browser/bookmarks/bookmark_editor.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/bookmarks/bookmark_editor.h b/chrome/browser/bookmarks/bookmark_editor.h
index 8b6445a..0de44bc 100644
--- a/chrome/browser/bookmarks/bookmark_editor.h
+++ b/chrome/browser/bookmarks/bookmark_editor.h
@@ -75,13 +75,11 @@ class BookmarkEditor {
// |parent| gives the initial parent to select in the tree for the node.
// |parent| is only used if |details.existing_node| is null.
// BookmarkEditor takes ownership of |handler| and deletes it when done.
- // |handler| may be null. See description of Handler for details.
static void Show(gfx::NativeWindow parent_window,
Profile* profile,
const BookmarkNode* parent,
const EditDetails& details,
- Configuration configuration,
- Handler* handler);
+ Configuration configuration);
};
#endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_