OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1751 IPC_MESSAGE_ROUTED1(ViewHostMsg_ImeCompositionRangeChanged, | 1751 IPC_MESSAGE_ROUTED1(ViewHostMsg_ImeCompositionRangeChanged, |
1752 ui::Range /* composition range */) | 1752 ui::Range /* composition range */) |
1753 | 1753 |
1754 // Required for cancelling an ongoing input method composition. | 1754 // Required for cancelling an ongoing input method composition. |
1755 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition) | 1755 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition) |
1756 | 1756 |
1757 // WebKit and JavaScript error messages to log to the console | 1757 // WebKit and JavaScript error messages to log to the console |
1758 // or debugger UI. | 1758 // or debugger UI. |
1759 IPC_MESSAGE_ROUTED4(ViewHostMsg_AddMessageToConsole, | 1759 IPC_MESSAGE_ROUTED4(ViewHostMsg_AddMessageToConsole, |
1760 int32, /* log level */ | 1760 int32, /* log level */ |
1761 std::wstring, /* msg */ | 1761 string16, /* msg */ |
1762 int32, /* line number */ | 1762 int32, /* line number */ |
1763 std::wstring /* source id */) | 1763 string16 /* source id */) |
1764 | 1764 |
1765 // Sent by the renderer process to indicate that a plugin instance has | 1765 // Sent by the renderer process to indicate that a plugin instance has |
1766 // crashed. | 1766 // crashed. |
1767 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin, | 1767 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin, |
1768 FilePath /* plugin_path */) | 1768 FilePath /* plugin_path */) |
1769 | 1769 |
1770 // Displays a box to confirm that the user wants to navigate away from the | 1770 // Displays a box to confirm that the user wants to navigate away from the |
1771 // page. Replies true if yes, false otherwise, the reply string is ignored, | 1771 // page. Replies true if yes, false otherwise, the reply string is ignored, |
1772 // but is included so that we can use OnJavaScriptMessageBoxClosed. | 1772 // but is included so that we can use OnJavaScriptMessageBoxClosed. |
1773 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm, | 1773 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm, |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2033 int32 /* complete status */) | 2033 int32 /* complete status */) |
2034 | 2034 |
2035 // Request updated information about the client firewall traversal policy. | 2035 // Request updated information about the client firewall traversal policy. |
2036 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2036 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
2037 // being sent back. | 2037 // being sent back. |
2038 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2038 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
2039 | 2039 |
2040 // Notifies the browser of an event occurring in the media pipeline. | 2040 // Notifies the browser of an event occurring in the media pipeline. |
2041 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2041 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
2042 media::MediaLogEvent /* event */) | 2042 media::MediaLogEvent /* event */) |
OLD | NEW |