OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/toolbar/action_box_menu_model.h" |
| 6 |
| 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/extensions/extension_toolbar_model.h" |
| 9 |
| 10 // Arbitrary number just to leave enough space for menu IDs |
| 11 // that show before extensions. Like "Bookmark this page", "Send tab to device" |
| 12 // and so on. They could have any IDs < kFirstExtensionCommandId. |
| 13 static const int kFirstExtensionCommandId = 1000; |
| 14 |
| 15 //////////////////////////////////////////////////////////////////////////////// |
| 16 // ActionBoxMenuModel |
| 17 |
| 18 ActionBoxMenuModel::ActionBoxMenuModel(ExtensionService* extension_service) |
| 19 : ALLOW_THIS_IN_INITIALIZER_LIST(ui::SimpleMenuModel(NULL)), |
| 20 extension_service_(extension_service) { |
| 21 // Adds extensions to the model. |
| 22 int command_id = kFirstExtensionCommandId; |
| 23 const extensions::ExtensionList& action_box_items = action_box_menu_items(); |
| 24 for (size_t i = 0; i < action_box_items.size(); ++i) { |
| 25 const extensions::Extension* extension = action_box_items[i]; |
| 26 AddItem(command_id, UTF8ToUTF16(extension->name())); |
| 27 id_to_extension_id_map_[command_id++] = extension->id(); |
| 28 } |
| 29 } |
| 30 |
| 31 ActionBoxMenuModel::~ActionBoxMenuModel() { |
| 32 } |
| 33 |
| 34 void ActionBoxMenuModel::Observe(int type, |
| 35 const content::NotificationSource& source, |
| 36 const content::NotificationDetails& details) { |
| 37 } |
OLD | NEW |