| Index: chrome/browser/extensions/extension_host.h
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_host.h (revision 63740)
|
| +++ chrome/browser/extensions/extension_host.h (working copy)
|
| @@ -6,8 +6,9 @@
|
| #define CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_
|
| #pragma once
|
|
|
| +#include <list>
|
| #include <string>
|
| -#include <list>
|
| +#include <vector>
|
|
|
| #include "base/perftimer.h"
|
| #include "base/scoped_ptr.h"
|
| @@ -155,6 +156,12 @@
|
| const gfx::Rect& initial_pos);
|
| virtual void ShowCreatedFullscreenWidget(int route_id);
|
| virtual void ShowContextMenu(const ContextMenuParams& params);
|
| + virtual void ShowPopupMenu(const gfx::Rect& bounds,
|
| + int item_height,
|
| + double item_font_size,
|
| + int selected_item,
|
| + const std::vector<WebMenuItem>& items,
|
| + bool right_aligned);
|
| virtual void StartDragging(const WebDropData& drop_data,
|
| WebKit::WebDragOperationsMask allowed_operations,
|
| const SkBitmap& image,
|
|
|