| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index 0e84befe3243bc5bbd03902b3f1497ed27406753..e88c1b32baf0ae6905c88e48cf53e8a0fbebc7a3 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -19,6 +19,7 @@
|
| #include "content/port/common/input_event_ack_state.h"
|
| #include "content/public/common/common_param_traits.h"
|
| #include "content/public/common/context_menu_params.h"
|
| +#include "content/public/common/favicon_url.h"
|
| #include "content/public/common/file_chooser_params.h"
|
| #include "content/public/common/frame_navigate_params.h"
|
| #include "content/public/common/javascript_message_type.h"
|
| @@ -74,6 +75,7 @@ IPC_ENUM_TRAITS(WebKit::WebPopupType)
|
| IPC_ENUM_TRAITS(WebKit::WebTextDirection)
|
| IPC_ENUM_TRAITS(WebMenuItem::Type)
|
| IPC_ENUM_TRAITS(WindowContainerType)
|
| +IPC_ENUM_TRAITS(content::FaviconURL::IconType)
|
| IPC_ENUM_TRAITS(content::FileChooserParams::Mode)
|
| IPC_ENUM_TRAITS(content::InputEventAckState)
|
| IPC_ENUM_TRAITS(content::JavaScriptMessageType)
|
| @@ -198,6 +200,11 @@ IPC_STRUCT_TRAITS_BEGIN(content::EditCommand)
|
| IPC_STRUCT_TRAITS_MEMBER(value)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(content::FaviconURL)
|
| + IPC_STRUCT_TRAITS_MEMBER(icon_url)
|
| + IPC_STRUCT_TRAITS_MEMBER(icon_type)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams)
|
| IPC_STRUCT_TRAITS_MEMBER(mode)
|
| IPC_STRUCT_TRAITS_MEMBER(title)
|
| @@ -2295,6 +2302,11 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached,
|
| // first paint.
|
| IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody)
|
|
|
| +// Notification that the urls for the favicon of a site has been determined.
|
| +IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateFaviconURL,
|
| + int32 /* page_id */,
|
| + std::vector<content::FaviconURL> /* candidates */)
|
| +
|
| #if defined(OS_ANDROID)
|
| // Response to ViewMsg_FindMatchRects.
|
| //
|
|
|