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 1951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1962 media::MediaLogEvent /* event */) | 1962 media::MediaLogEvent /* event */) |
1963 | 1963 |
1964 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1964 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1965 // being sent back. | 1965 // being sent back. |
1966 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1966 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1967 | 1967 |
1968 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1968 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1969 // whenever the mouse is unlocked (which may or may not be caused by | 1969 // whenever the mouse is unlocked (which may or may not be caused by |
1970 // ViewHostMsg_UnlockMouse). | 1970 // ViewHostMsg_UnlockMouse). |
1971 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1971 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
| 1972 |
OLD | NEW |