OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 | 606 |
607 // Sent when the renderer fails a provisional load with an error. | 607 // Sent when the renderer fails a provisional load with an error. |
608 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError, | 608 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError, |
609 bool /* true if it is the main frame */, | 609 bool /* true if it is the main frame */, |
610 int /* error_code */, | 610 int /* error_code */, |
611 GURL /* url */, | 611 GURL /* url */, |
612 bool /* true if the failure is the result of | 612 bool /* true if the failure is the result of |
613 navigating to a POST again and we're going to | 613 navigating to a POST again and we're going to |
614 show the POST interstitial */ ) | 614 show the POST interstitial */ ) |
615 | 615 |
616 #if defined(OS_WIN) | |
617 // Sent to paint part of the view. In response to this message, the host | 616 // Sent to paint part of the view. In response to this message, the host |
618 // generates a ViewMsg_PaintRect_ACK message. | 617 // generates a ViewMsg_PaintRect_ACK message. |
619 IPC_MESSAGE_ROUTED1(ViewHostMsg_PaintRect, | 618 IPC_MESSAGE_ROUTED1(ViewHostMsg_PaintRect, |
620 ViewHostMsg_PaintRect_Params) | 619 ViewHostMsg_PaintRect_Params) |
621 | 620 |
622 // Sent to scroll part of the view. In response to this message, the host | 621 // Sent to scroll part of the view. In response to this message, the host |
623 // generates a ViewMsg_ScrollRect_ACK message. | 622 // generates a ViewMsg_ScrollRect_ACK message. |
624 IPC_MESSAGE_ROUTED1(ViewHostMsg_ScrollRect, | 623 IPC_MESSAGE_ROUTED1(ViewHostMsg_ScrollRect, |
625 ViewHostMsg_ScrollRect_Params) | 624 ViewHostMsg_ScrollRect_Params) |
626 #endif | |
627 | 625 |
628 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. | 626 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. |
629 // Payload is a WebInputEvent::Type which is the type of the event, followed | 627 // Payload is a WebInputEvent::Type which is the type of the event, followed |
630 // by an optional WebInputEvent which is provided only if the event was not | 628 // by an optional WebInputEvent which is provided only if the event was not |
631 // processed. | 629 // processed. |
632 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) | 630 IPC_MESSAGE_ROUTED0(ViewHostMsg_HandleInputEvent_ACK) |
633 | 631 |
634 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) | 632 IPC_MESSAGE_ROUTED0(ViewHostMsg_Focus) |
635 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) | 633 IPC_MESSAGE_ROUTED0(ViewHostMsg_Blur) |
636 | 634 |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 | 1102 |
1105 // Get the list of proxies to use for |url|, as a semicolon delimited list | 1103 // Get the list of proxies to use for |url|, as a semicolon delimited list |
1106 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also | 1104 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also |
1107 // PluginProcessHostMsg_ResolveProxy which does the same thing. | 1105 // PluginProcessHostMsg_ResolveProxy which does the same thing. |
1108 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, | 1106 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, |
1109 GURL /* url */, | 1107 GURL /* url */, |
1110 int /* network error */, | 1108 int /* network error */, |
1111 std::string /* proxy list */) | 1109 std::string /* proxy list */) |
1112 | 1110 |
1113 IPC_END_MESSAGES(ViewHost) | 1111 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |