Index: content/common/view_messages.h |
=================================================================== |
--- content/common/view_messages.h (revision 198276) |
+++ content/common/view_messages.h (working copy) |
@@ -137,6 +137,27 @@ |
IPC_STRUCT_TRAITS_MEMBER(availableRect) |
IPC_STRUCT_TRAITS_END() |
+ |
+IPC_STRUCT_TRAITS_BEGIN(WebKit::WindowFeatures) |
+ IPC_STRUCT_TRAITS_MEMBER(dialog) |
+ IPC_STRUCT_TRAITS_MEMBER(fullscreen) |
+ IPC_STRUCT_TRAITS_MEMBER(height) |
+ IPC_STRUCT_TRAITS_MEMBER(heightSet) |
+ IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) |
+ IPC_STRUCT_TRAITS_MEMBER(menuBarVisible) |
+ IPC_STRUCT_TRAITS_MEMBER(resizable) |
+ IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) |
+ IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) |
+ IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) |
+ IPC_STRUCT_TRAITS_MEMBER(width) |
+ IPC_STRUCT_TRAITS_MEMBER(widthSet) |
+ IPC_STRUCT_TRAITS_MEMBER(x) |
+ IPC_STRUCT_TRAITS_MEMBER(xSet) |
+ IPC_STRUCT_TRAITS_MEMBER(y) |
+ IPC_STRUCT_TRAITS_MEMBER(ySet) |
+ IPC_STRUCT_TRAITS_MEMBER(additionalFeatures) |
+IPC_STRUCT_TRAITS_END() |
+ |
IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
IPC_STRUCT_TRAITS_MEMBER(label) |
IPC_STRUCT_TRAITS_MEMBER(toolTip) |
@@ -326,8 +347,11 @@ |
IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
// The URL that will be loaded in the new window (empty if none has been |
- // sepcified). |
+ // specified). |
IPC_STRUCT_MEMBER(GURL, target_url) |
+ |
+ // Special features of the new window |
+ IPC_STRUCT_MEMBER(WebKit::WindowFeatures, window_features) |
IPC_STRUCT_END() |
IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) |