| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 IPC_MESSAGE_ROUTED0(FrameMsg_Stop) | 697 IPC_MESSAGE_ROUTED0(FrameMsg_Stop) |
| 698 | 698 |
| 699 // A message sent to RenderFrameProxy to indicate that its corresponding | 699 // A message sent to RenderFrameProxy to indicate that its corresponding |
| 700 // RenderFrame has started loading a document. | 700 // RenderFrame has started loading a document. |
| 701 IPC_MESSAGE_ROUTED0(FrameMsg_DidStartLoading) | 701 IPC_MESSAGE_ROUTED0(FrameMsg_DidStartLoading) |
| 702 | 702 |
| 703 // A message sent to RenderFrameProxy to indicate that its corresponding | 703 // A message sent to RenderFrameProxy to indicate that its corresponding |
| 704 // RenderFrame has completed loading. | 704 // RenderFrame has completed loading. |
| 705 IPC_MESSAGE_ROUTED0(FrameMsg_DidStopLoading) | 705 IPC_MESSAGE_ROUTED0(FrameMsg_DidStopLoading) |
| 706 | 706 |
| 707 // Request for the renderer to insert CSS into the frame. | |
| 708 IPC_MESSAGE_ROUTED1(FrameMsg_CSSInsertRequest, | |
| 709 std::string /* css */) | |
| 710 | |
| 711 // Add message to the frame console. | 707 // Add message to the frame console. |
| 712 IPC_MESSAGE_ROUTED2(FrameMsg_AddMessageToConsole, | 708 IPC_MESSAGE_ROUTED2(FrameMsg_AddMessageToConsole, |
| 713 content::ConsoleMessageLevel /* level */, | 709 content::ConsoleMessageLevel /* level */, |
| 714 std::string /* message */) | 710 std::string /* message */) |
| 715 | 711 |
| 716 // Request for the renderer to execute JavaScript in the frame's context. | 712 // Request for the renderer to execute JavaScript in the frame's context. |
| 717 // | 713 // |
| 718 // javascript is the string containing the JavaScript to be executed in the | 714 // javascript is the string containing the JavaScript to be executed in the |
| 719 // target frame's context. | 715 // target frame's context. |
| 720 // | 716 // |
| (...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 // nearest find result in the sending frame. | 1575 // nearest find result in the sending frame. |
| 1580 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1576 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1581 int /* nfr_request_id */, | 1577 int /* nfr_request_id */, |
| 1582 float /* distance */) | 1578 float /* distance */) |
| 1583 #endif | 1579 #endif |
| 1584 | 1580 |
| 1585 // Adding a new message? Stick to the sort order above: first platform | 1581 // Adding a new message? Stick to the sort order above: first platform |
| 1586 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1582 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1587 // platform independent FrameHostMsg, then ifdefs for platform specific | 1583 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1588 // FrameHostMsg. | 1584 // FrameHostMsg. |
| OLD | NEW |