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

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

Issue 8536003: Pointer Lock (was Mouse Lock) added to about:flags and passed to WebKit runtime flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pointer lock rename 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled) 234 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled)
235 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled) 235 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled)
236 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) 236 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled)
237 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) 237 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled)
238 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) 238 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled)
239 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) 239 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled)
240 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) 240 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled)
241 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) 241 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled)
242 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) 242 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled)
243 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) 243 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled)
244 IPC_STRUCT_TRAITS_MEMBER(pointer_lock_enabled)
244 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) 245 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content)
245 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) 246 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content)
246 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) 247 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator)
247 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) 248 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled)
248 IPC_STRUCT_TRAITS_END() 249 IPC_STRUCT_TRAITS_END()
249 250
250 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) 251 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem)
251 IPC_STRUCT_TRAITS_MEMBER(label) 252 IPC_STRUCT_TRAITS_MEMBER(label)
252 IPC_STRUCT_TRAITS_MEMBER(toolTip) 253 IPC_STRUCT_TRAITS_MEMBER(toolTip)
253 IPC_STRUCT_TRAITS_MEMBER(type) 254 IPC_STRUCT_TRAITS_MEMBER(type)
(...skipping 1689 matching lines...) Expand 10 before | Expand all | Expand 10 after
1943 media::MediaLogEvent /* event */) 1944 media::MediaLogEvent /* event */)
1944 1945
1945 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message 1946 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message
1946 // being sent back. 1947 // being sent back.
1947 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) 1948 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse)
1948 1949
1949 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent 1950 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent
1950 // whenever the mouse is unlocked (which may or may not be caused by 1951 // whenever the mouse is unlocked (which may or may not be caused by
1951 // ViewHostMsg_UnlockMouse). 1952 // ViewHostMsg_UnlockMouse).
1952 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) 1953 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698