| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 IPC_MESSAGE_ROUTED0(FrameMsg_DidStartLoading) | 662 IPC_MESSAGE_ROUTED0(FrameMsg_DidStartLoading) |
| 663 | 663 |
| 664 // A message sent to RenderFrameProxy to indicate that its corresponding | 664 // A message sent to RenderFrameProxy to indicate that its corresponding |
| 665 // RenderFrame has completed loading. | 665 // RenderFrame has completed loading. |
| 666 IPC_MESSAGE_ROUTED0(FrameMsg_DidStopLoading) | 666 IPC_MESSAGE_ROUTED0(FrameMsg_DidStopLoading) |
| 667 | 667 |
| 668 // Request for the renderer to insert CSS into the frame. | 668 // Request for the renderer to insert CSS into the frame. |
| 669 IPC_MESSAGE_ROUTED1(FrameMsg_CSSInsertRequest, | 669 IPC_MESSAGE_ROUTED1(FrameMsg_CSSInsertRequest, |
| 670 std::string /* css */) | 670 std::string /* css */) |
| 671 | 671 |
| 672 // Add message to the devtools console. | 672 // Add message to the frame console. |
| 673 IPC_MESSAGE_ROUTED2(FrameMsg_AddMessageToConsole, | 673 IPC_MESSAGE_ROUTED2(FrameMsg_AddMessageToConsole, |
| 674 content::ConsoleMessageLevel /* level */, | 674 content::ConsoleMessageLevel /* level */, |
| 675 std::string /* message */) | 675 std::string /* message */) |
| 676 | 676 |
| 677 // Request for the renderer to execute JavaScript in the frame's context. | 677 // Request for the renderer to execute JavaScript in the frame's context. |
| 678 // | 678 // |
| 679 // javascript is the string containing the JavaScript to be executed in the | 679 // javascript is the string containing the JavaScript to be executed in the |
| 680 // target frame's context. | 680 // target frame's context. |
| 681 // | 681 // |
| 682 // If the third parameter is true the result is sent back to the browser using | 682 // If the third parameter is true the result is sent back to the browser using |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1446 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1447 int /* version */, | 1447 int /* version */, |
| 1448 std::vector<gfx::RectF> /* rects */, | 1448 std::vector<gfx::RectF> /* rects */, |
| 1449 gfx::RectF /* active_rect */) | 1449 gfx::RectF /* active_rect */) |
| 1450 #endif | 1450 #endif |
| 1451 | 1451 |
| 1452 // Adding a new message? Stick to the sort order above: first platform | 1452 // Adding a new message? Stick to the sort order above: first platform |
| 1453 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1453 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1454 // platform independent FrameHostMsg, then ifdefs for platform specific | 1454 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1455 // FrameHostMsg. | 1455 // FrameHostMsg. |
| OLD | NEW |