| Index: chrome/browser/ui/toolbar/wrench_menu_model.h
|
| diff --git a/chrome/browser/ui/toolbar/wrench_menu_model.h b/chrome/browser/ui/toolbar/wrench_menu_model.h
|
| index 1bf9bb0a01cd755b21501a9ade3e2388270c34d6..159b219feffab318bfc1a08bfefb00a9f63a3914 100644
|
| --- a/chrome/browser/ui/toolbar/wrench_menu_model.h
|
| +++ b/chrome/browser/ui/toolbar/wrench_menu_model.h
|
| @@ -79,6 +79,16 @@ class WrenchMenuModel : public ui::SimpleMenuModel,
|
| public TabStripModelObserver,
|
| public content::NotificationObserver {
|
| public:
|
| + // Range of command ID's to use for the items representing bookmarks in the
|
| + // bookmark menu, must not overlap with that for recent tabs submenu.
|
| + static const int kMinBookmarkCommandId = 1;
|
| + static const int kMaxBookmarkCommandId = 1000;
|
| +
|
| + // Range of command ID's to use for the items in the recent tabs submenu, must
|
| + // not overlap with that for bookmarks.
|
| + static const int kMinRecentTabsCommandId = 1001;
|
| + static const int kMaxRecentTabsCommandId = 1200;
|
| +
|
| // TODO: remove |is_new_menu|.
|
| WrenchMenuModel(ui::AcceleratorProvider* provider,
|
| Browser* browser,
|
|
|