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

Side by Side Diff: chrome/browser/ui/toolbar/action_box_menu_model.cc

Issue 10533086: Action box menu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Action box menu Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/action_box_menu_model.h ('k') | chrome/browser/ui/views/action_box_menu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698