| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index b57e46aa6166ac617dcacfda1aed2de72d113adf..e9eec40ef6d13187feb99ef2e93b0734648a9718 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -23,6 +23,7 @@
|
| #include "content/public/common/frame_navigate_params.h"
|
| #include "content/public/common/javascript_message_type.h"
|
| #include "content/public/common/message_port_types.h"
|
| +#include "content/public/common/page_importance_signals.h"
|
| #include "content/public/common/page_state.h"
|
| #include "content/public/common/resource_response.h"
|
| #include "content/public/common/three_d_api_types.h"
|
| @@ -122,6 +123,9 @@ IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement)
|
| IPC_STRUCT_TRAITS_MEMBER(rect)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals)
|
| + IPC_STRUCT_TRAITS_MEMBER(had_form_interaction)
|
| +IPC_STRUCT_TRAITS_END()
|
|
|
| IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params)
|
| // Error code as reported in the DidFailProvisionalLoad callback.
|
| @@ -1164,6 +1168,10 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent,
|
| std::string /* security_origin */,
|
| GURL /* target URL */)
|
|
|
| +// Sent when the renderer updates hint for importance of a tab.
|
| +IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdatePageImportanceSignals,
|
| + content::PageImportanceSignals)
|
| +
|
| #if defined(OS_MACOSX) || defined(OS_ANDROID)
|
|
|
| // Message to show/hide a popup menu using native controls.
|
|
|