| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "cc/surfaces/surface_id.h" | 8 #include "cc/surfaces/surface_id.h" |
| 9 #include "cc/surfaces/surface_sequence.h" | 9 #include "cc/surfaces/surface_sequence.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 // properties of the HTMLFrameOwnerElement from the parent process. | 375 // properties of the HTMLFrameOwnerElement from the parent process. |
| 376 // Note that unlike FrameReplicationState, this is not replicated for remote | 376 // Note that unlike FrameReplicationState, this is not replicated for remote |
| 377 // frames. | 377 // frames. |
| 378 IPC_STRUCT_MEMBER(blink::WebFrameOwnerProperties, frame_owner_properties) | 378 IPC_STRUCT_MEMBER(blink::WebFrameOwnerProperties, frame_owner_properties) |
| 379 | 379 |
| 380 // Specifies properties for a new RenderWidget that will be attached to the | 380 // Specifies properties for a new RenderWidget that will be attached to the |
| 381 // new RenderFrame (if one is needed). | 381 // new RenderFrame (if one is needed). |
| 382 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) | 382 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) |
| 383 IPC_STRUCT_END() | 383 IPC_STRUCT_END() |
| 384 | 384 |
| 385 // Parameters included with an OpenURL request. |frame_unique_name| is only |
| 386 // specified if |is_history_navigation_in_new_child| is true, for the case that |
| 387 // the browser process should look for an existing history item for the frame. |
| 385 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) | 388 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) |
| 386 IPC_STRUCT_MEMBER(GURL, url) | 389 IPC_STRUCT_MEMBER(GURL, url) |
| 387 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 390 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
| 388 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 391 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 389 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 392 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
| 390 IPC_STRUCT_MEMBER(bool, user_gesture) | 393 IPC_STRUCT_MEMBER(bool, user_gesture) |
| 394 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) |
| 395 IPC_STRUCT_MEMBER(std::string, frame_unique_name) |
| 391 IPC_STRUCT_END() | 396 IPC_STRUCT_END() |
| 392 | 397 |
| 393 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) | 398 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) |
| 394 // Text tracks on/off state | 399 // Text tracks on/off state |
| 395 IPC_STRUCT_MEMBER(bool, text_tracks_enabled) | 400 IPC_STRUCT_MEMBER(bool, text_tracks_enabled) |
| 396 | 401 |
| 397 // Background color of the text track. | 402 // Background color of the text track. |
| 398 IPC_STRUCT_MEMBER(std::string, text_track_background_color) | 403 IPC_STRUCT_MEMBER(std::string, text_track_background_color) |
| 399 | 404 |
| 400 // Font family of the text track text. | 405 // Font family of the text track text. |
| (...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1256 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 1252 FrameHostMsg_ShowPopup_Params) | 1257 FrameHostMsg_ShowPopup_Params) |
| 1253 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1258 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 1254 | 1259 |
| 1255 #endif | 1260 #endif |
| 1256 | 1261 |
| 1257 // Adding a new message? Stick to the sort order above: first platform | 1262 // Adding a new message? Stick to the sort order above: first platform |
| 1258 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1263 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1259 // platform independent FrameHostMsg, then ifdefs for platform specific | 1264 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1260 // FrameHostMsg. | 1265 // FrameHostMsg. |
| OLD | NEW |