| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index 5956f0d33a982ecee573dee55e36d1420a63752d..689b54d559eaaa5266a1573b91036909b280b43e 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -799,6 +799,10 @@ IPC_STRUCT_END()
|
|
|
| // Messages sent from the browser to the renderer.
|
|
|
| +// Set the top-level frame to the provided name.
|
| +IPC_MESSAGE_ROUTED1(ViewMsg_SetName,
|
| + std::string /* frame_name */)
|
| +
|
| // Sent to the RenderView when a new tab is swapped into an existing
|
| // tab and the histories need to be merged. The existing tab has a history of
|
| // |merged_history_length| which precedes the history of the new tab. All
|
| @@ -2143,6 +2147,12 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_UpdateZoomLimits,
|
| IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged,
|
| bool /* enabled */)
|
|
|
| +// Informs the browser of updated frame names.
|
| +IPC_MESSAGE_ROUTED3(ViewHostMsg_UpdateFrameName,
|
| + int /* frame_id */,
|
| + bool /* is_top_level */,
|
| + std::string /* name */)
|
| +
|
| #if defined(OS_MACOSX)
|
| // Request that the browser load a font into shared memory for us.
|
| IPC_SYNC_MESSAGE_CONTROL1_3(ViewHostMsg_LoadFont,
|
|
|