| Index: webkit/glue/context_menu.h
|
| ===================================================================
|
| --- webkit/glue/context_menu.h (revision 79632)
|
| +++ webkit/glue/context_menu.h (working copy)
|
| @@ -23,6 +23,16 @@
|
| CustomContextMenuContext();
|
| };
|
|
|
| +struct IntroductionContext {
|
| + int request_id;
|
| + std::string customer;
|
| + int64 frame_id;
|
| + std::vector<std::string> wanted;
|
| + int port_id;
|
| +
|
| + IntroductionContext() : request_id(0), frame_id(0), port_id(0) {}
|
| +};
|
| +
|
| } // namespace webkit_glue
|
|
|
| // TODO(viettrungluu): Put this in the webkit_glue namespace.
|
| @@ -110,6 +120,7 @@
|
| // The character encoding of the frame on which the menu is invoked.
|
| std::string frame_charset;
|
|
|
| + webkit_glue::IntroductionContext introduction_context;
|
| webkit_glue::CustomContextMenuContext custom_context;
|
| std::vector<WebMenuItem> custom_items;
|
|
|
|
|