diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-06 21:06:48 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-06 21:06:48 +0000 |
commit | 0568e6ca9cba8826a42eed080e569dba3fe6afec (patch) | |
tree | 855ac473db7b5ade1a4159953559edde7e6ef679 /chrome/browser/views/bookmark_context_menu.cc | |
parent | 90eeddb230b95ef7c31b072d60f4de0a9c0c875a (diff) | |
download | chromium_src-0568e6ca9cba8826a42eed080e569dba3fe6afec.zip chromium_src-0568e6ca9cba8826a42eed080e569dba3fe6afec.tar.gz chromium_src-0568e6ca9cba8826a42eed080e569dba3fe6afec.tar.bz2 |
Get rid of some dead bookmark context menu code.
(Continuing fallout of native bookmark manager deletion.)
More refactoring still to come.
BUG=38908
TEST=bookmark bar context menu still works as before
Review URL: http://codereview.chromium.org/1986003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46624 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/bookmark_context_menu.cc')
-rw-r--r-- | chrome/browser/views/bookmark_context_menu.cc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/chrome/browser/views/bookmark_context_menu.cc b/chrome/browser/views/bookmark_context_menu.cc index 9ef9506..cdd778a 100644 --- a/chrome/browser/views/bookmark_context_menu.cc +++ b/chrome/browser/views/bookmark_context_menu.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -19,13 +19,10 @@ BookmarkContextMenu::BookmarkContextMenu( Profile* profile, PageNavigator* page_navigator, const BookmarkNode* parent, - const std::vector<const BookmarkNode*>& selection, - BookmarkContextMenuControllerViews::ConfigurationType configuration) + const std::vector<const BookmarkNode*>& selection) : ALLOW_THIS_IN_INITIALIZER_LIST( - controller_(new BookmarkContextMenuControllerViews(parent_window, this, - profile, page_navigator, - parent, selection, - configuration))), + controller_(new BookmarkContextMenuControllerViews(parent_window, + this, profile, page_navigator, parent, selection))), parent_window_(parent_window), ALLOW_THIS_IN_INITIALIZER_LIST(menu_(new views::MenuItemView(this))), observer_(NULL) { |