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/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1889 | 1889 |
1890 // Displays a JavaScript out-of-memory message in the infobar. | 1890 // Displays a JavaScript out-of-memory message in the infobar. |
1891 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) | 1891 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) |
1892 | 1892 |
1893 // Register a new handler for URL requests with the given scheme. | 1893 // Register a new handler for URL requests with the given scheme. |
1894 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, | 1894 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, |
1895 std::string /* scheme */, | 1895 std::string /* scheme */, |
1896 GURL /* url */, | 1896 GURL /* url */, |
1897 string16 /* title */) | 1897 string16 /* title */) |
1898 | 1898 |
1899 // Register a new handler for Intents with the given action and type filter. | |
1900 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler, | |
1901 string16 /* action */, | |
1902 string16 /* type */, | |
1903 string16 /* href */, | |
1904 string16 /* title */) | |
1905 | |
1906 // Stores new inspector setting in the profile. | 1899 // Stores new inspector setting in the profile. |
1907 // TODO(jam): this should be in the chrome module | 1900 // TODO(jam): this should be in the chrome module |
1908 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, | 1901 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, |
1909 std::string, /* key */ | 1902 std::string, /* key */ |
1910 std::string /* value */) | 1903 std::string /* value */) |
1911 | 1904 |
1912 // Puts the browser into "tab fullscreen" mode for the sending renderer. | 1905 // Puts the browser into "tab fullscreen" mode for the sending renderer. |
1913 // See the comment in chrome/browser/ui/browser.h for more details. | 1906 // See the comment in chrome/browser/ui/browser.h for more details. |
1914 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen, | 1907 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen, |
1915 bool /* enter_fullscreen */) | 1908 bool /* enter_fullscreen */) |
(...skipping 22 matching lines...) Expand all Loading... |
1938 media::MediaLogEvent /* event */) | 1931 media::MediaLogEvent /* event */) |
1939 | 1932 |
1940 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1933 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1941 // being sent back. | 1934 // being sent back. |
1942 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1935 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1943 | 1936 |
1944 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1937 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1945 // whenever the mouse is unlocked (which may or may not be caused by | 1938 // whenever the mouse is unlocked (which may or may not be caused by |
1946 // ViewHostMsg_UnlockMouse). | 1939 // ViewHostMsg_UnlockMouse). |
1947 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1940 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |