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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 9353013: Add GetUsbKeyCode dev interface for Pepper key events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-sync to remove unrelated edits Created 8 years, 10 months 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) 123 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp)
124 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) 124 IPC_STRUCT_TRAITS_MEMBER(event_modifiers)
125 IPC_STRUCT_TRAITS_MEMBER(mouse_button) 125 IPC_STRUCT_TRAITS_MEMBER(mouse_button)
126 IPC_STRUCT_TRAITS_MEMBER(mouse_position) 126 IPC_STRUCT_TRAITS_MEMBER(mouse_position)
127 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) 127 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count)
128 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) 128 IPC_STRUCT_TRAITS_MEMBER(mouse_movement)
129 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) 129 IPC_STRUCT_TRAITS_MEMBER(wheel_delta)
130 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) 130 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks)
131 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) 131 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page)
132 IPC_STRUCT_TRAITS_MEMBER(key_code) 132 IPC_STRUCT_TRAITS_MEMBER(key_code)
133 IPC_STRUCT_TRAITS_MEMBER(usb_scan_code)
133 IPC_STRUCT_TRAITS_MEMBER(character_text) 134 IPC_STRUCT_TRAITS_MEMBER(character_text)
134 IPC_STRUCT_TRAITS_MEMBER(composition_segment_offsets) 135 IPC_STRUCT_TRAITS_MEMBER(composition_segment_offsets)
135 IPC_STRUCT_TRAITS_MEMBER(composition_target_segment) 136 IPC_STRUCT_TRAITS_MEMBER(composition_target_segment)
136 IPC_STRUCT_TRAITS_MEMBER(composition_selection_start) 137 IPC_STRUCT_TRAITS_MEMBER(composition_selection_start)
137 IPC_STRUCT_TRAITS_MEMBER(composition_selection_end) 138 IPC_STRUCT_TRAITS_MEMBER(composition_selection_end)
138 IPC_STRUCT_TRAITS_END() 139 IPC_STRUCT_TRAITS_END()
139 140
140 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data) 141 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data)
141 IPC_STRUCT_TRAITS_MEMBER(url) 142 IPC_STRUCT_TRAITS_MEMBER(url)
142 IPC_STRUCT_TRAITS_MEMBER(method) 143 IPC_STRUCT_TRAITS_MEMBER(method)
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1161 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1161 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1162 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1162 ppapi::HostResource /* video_decoder */, 1163 ppapi::HostResource /* video_decoder */,
1163 int32_t /* picture buffer id */) 1164 int32_t /* picture buffer id */)
1164 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1165 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1165 ppapi::HostResource /* video_decoder */) 1166 ppapi::HostResource /* video_decoder */)
1166 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1167 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1167 ppapi::HostResource /* video_decoder */) 1168 ppapi::HostResource /* video_decoder */)
1168 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1169 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1169 ppapi::HostResource /* video_decoder */) 1170 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698