| 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 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2041 GURL /* url */, | 2041 GURL /* url */, |
| 2042 string16 /* title */) | 2042 string16 /* title */) |
| 2043 | 2043 |
| 2044 // Register a new handler for Intents with the given action and type filter. | 2044 // Register a new handler for Intents with the given action and type filter. |
| 2045 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler, | 2045 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler, |
| 2046 string16 /* action */, | 2046 string16 /* action */, |
| 2047 string16 /* type */, | 2047 string16 /* type */, |
| 2048 string16 /* href */, | 2048 string16 /* href */, |
| 2049 string16 /* title */) | 2049 string16 /* title */) |
| 2050 | 2050 |
| 2051 // Route the startActivity Intents call from a page to the service picker. | |
| 2052 IPC_MESSAGE_ROUTED4(ViewHostMsg_WebIntentDispatch, | |
| 2053 string16 /* action */, | |
| 2054 string16 /* type */, | |
| 2055 string16 /* payload data */, | |
| 2056 int /* intent ID */) | |
| 2057 | |
| 2058 // Stores new inspector setting in the profile. | 2051 // Stores new inspector setting in the profile. |
| 2059 // TODO(jam): this should be in the chrome module | 2052 // TODO(jam): this should be in the chrome module |
| 2060 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, | 2053 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, |
| 2061 std::string, /* key */ | 2054 std::string, /* key */ |
| 2062 std::string /* value */) | 2055 std::string /* value */) |
| 2063 | 2056 |
| 2064 // Puts the browser into "tab fullscreen" mode for the sending renderer. | 2057 // Puts the browser into "tab fullscreen" mode for the sending renderer. |
| 2065 // See the comment in chrome/browser/ui/browser.h for more details. | 2058 // See the comment in chrome/browser/ui/browser.h for more details. |
| 2066 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen, | 2059 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen, |
| 2067 bool /* enter_fullscreen */) | 2060 bool /* enter_fullscreen */) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 2086 int32 /* complete status */) | 2079 int32 /* complete status */) |
| 2087 | 2080 |
| 2088 // Request updated information about the client firewall traversal policy. | 2081 // Request updated information about the client firewall traversal policy. |
| 2089 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2082 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
| 2090 // being sent back. | 2083 // being sent back. |
| 2091 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2084 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
| 2092 | 2085 |
| 2093 // Notifies the browser of an event occurring in the media pipeline. | 2086 // Notifies the browser of an event occurring in the media pipeline. |
| 2094 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2087 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
| 2095 media::MediaLogEvent /* event */) | 2088 media::MediaLogEvent /* event */) |
| OLD | NEW |