Index: chrome/browser/ui/toolbar/bookmark_sub_menu_model.cc |
=================================================================== |
--- chrome/browser/ui/toolbar/bookmark_sub_menu_model.cc (revision 105454) |
+++ chrome/browser/ui/toolbar/bookmark_sub_menu_model.cc (working copy) |
@@ -0,0 +1,36 @@ |
+// Copyright (c) 2011 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. |
+ |
+#include "chrome/browser/ui/toolbar/bookmark_sub_menu_model.h" |
+ |
+#include "chrome/app/chrome_command_ids.h" |
+#include "grit/generated_resources.h" |
+ |
+// For views and cocoa, we have complex delegate systems to handle |
+// injecting the bookmarks to the bookmark submenu. This is done to support |
+// advanced interactions with the menu contents, like right click context menus. |
+// For the time being on GTK systems, we have a dedicated bookmark menu model in |
+// chrome/browser/ui/gtk/bookmark_sub_menu_model_gtk.cc instead. |
+ |
+// Note that although this file's header is included on GTK systems, this |
+// source file is not compiled there. (The header just includes the GTK one.) |
+ |
+BookmarkSubMenuModel::BookmarkSubMenuModel( |
+ ui::SimpleMenuModel::Delegate* delegate, Browser* browser) |
+ : SimpleMenuModel(delegate) { |
+ Build(browser); |
+} |
+ |
+BookmarkSubMenuModel::~BookmarkSubMenuModel() {} |
+ |
+void BookmarkSubMenuModel::Build(Browser* browser) { |
+ AddCheckItemWithStringId(IDC_SHOW_BOOKMARK_BAR, IDS_SHOW_BOOKMARK_BAR); |
+ AddItemWithStringId(IDC_SHOW_BOOKMARK_MANAGER, IDS_BOOKMARK_MANAGER); |
+#if !defined(OS_CHROMEOS) |
+ AddItemWithStringId(IDC_IMPORT_SETTINGS, IDS_IMPORT_SETTINGS_MENU_LABEL); |
+#endif |
+#if defined(OS_MACOSX) |
+ AddSeparator(); |
+#endif |
+} |