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