| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index ec561c1cabc147b490f91abcbaa427114ffefd83..6751e30f02349f71dc8b5d3d78057d876e5048f2 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -29,6 +29,8 @@
|
| #include "media/base/channel_layout.h"
|
| #include "media/base/media_log_event.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderline.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
| @@ -116,6 +118,11 @@ IPC_STRUCT_TRAITS_BEGIN(WebKit::WebPluginAction)
|
| IPC_STRUCT_TRAITS_MEMBER(enable)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(WebKit::WebPoint)
|
| + IPC_STRUCT_TRAITS_MEMBER(x)
|
| + IPC_STRUCT_TRAITS_MEMBER(y)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect)
|
| IPC_STRUCT_TRAITS_MEMBER(x)
|
| IPC_STRUCT_TRAITS_MEMBER(y)
|
| @@ -123,6 +130,18 @@ IPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect)
|
| IPC_STRUCT_TRAITS_MEMBER(height)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatPoint)
|
| + IPC_STRUCT_TRAITS_MEMBER(x)
|
| + IPC_STRUCT_TRAITS_MEMBER(y)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| +IPC_STRUCT_TRAITS_BEGIN(WebKit::WebFloatRect)
|
| + IPC_STRUCT_TRAITS_MEMBER(x)
|
| + IPC_STRUCT_TRAITS_MEMBER(y)
|
| + IPC_STRUCT_TRAITS_MEMBER(width)
|
| + IPC_STRUCT_TRAITS_MEMBER(height)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(WebKit::WebScreenInfo)
|
| IPC_STRUCT_TRAITS_MEMBER(verticalDPI)
|
| IPC_STRUCT_TRAITS_MEMBER(horizontalDPI)
|
|
|