Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: content/common/view_messages.h

Issue 8343070: Support dispositon attribute. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1886 matching lines...) Expand 10 before | Expand all | Expand 10 after
1897 1897
1898 // Displays a JavaScript out-of-memory message in the infobar. 1898 // Displays a JavaScript out-of-memory message in the infobar.
1899 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) 1899 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory)
1900 1900
1901 // Register a new handler for URL requests with the given scheme. 1901 // Register a new handler for URL requests with the given scheme.
1902 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, 1902 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler,
1903 std::string /* scheme */, 1903 std::string /* scheme */,
1904 GURL /* url */, 1904 GURL /* url */,
1905 string16 /* title */) 1905 string16 /* title */)
1906 1906
1907 // Register a new handler for Intents with the given action and type filter.
1908 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler,
1909 string16 /* action */,
1910 string16 /* type */,
1911 string16 /* href */,
1912 string16 /* title */)
1913
1914 // Stores new inspector setting in the profile. 1907 // Stores new inspector setting in the profile.
1915 // TODO(jam): this should be in the chrome module 1908 // TODO(jam): this should be in the chrome module
1916 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 1909 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
1917 std::string, /* key */ 1910 std::string, /* key */
1918 std::string /* value */) 1911 std::string /* value */)
1919 1912
1920 // Puts the browser into "tab fullscreen" mode for the sending renderer. 1913 // Puts the browser into "tab fullscreen" mode for the sending renderer.
1921 // See the comment in chrome/browser/ui/browser.h for more details. 1914 // See the comment in chrome/browser/ui/browser.h for more details.
1922 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen, 1915 IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen,
1923 bool /* enter_fullscreen */) 1916 bool /* enter_fullscreen */)
(...skipping 22 matching lines...) Expand all
1946 media::MediaLogEvent /* event */) 1939 media::MediaLogEvent /* event */)
1947 1940
1948 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message 1941 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message
1949 // being sent back. 1942 // being sent back.
1950 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) 1943 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse)
1951 1944
1952 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent 1945 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent
1953 // whenever the mouse is unlocked (which may or may not be caused by 1946 // whenever the mouse is unlocked (which may or may not be caused by
1954 // ViewHostMsg_UnlockMouse). 1947 // ViewHostMsg_UnlockMouse).
1955 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) 1948 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698