| OLD | NEW |
| 1 /* Copyright (c) 2011 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file defines the API used to handle mouse and keyboard input events. | 7 * This file defines the API used to handle mouse and keyboard input events. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /** | 10 /** |
| 11 * The <code>PP_InputEvent_Key</code> struct represents a key up or key down | 11 * The <code>PP_InputEvent_Key</code> struct represents a key up or key down |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 float_t wheel_ticks_y; | 194 float_t wheel_ticks_y; |
| 195 | 195 |
| 196 /** | 196 /** |
| 197 * Indicates if the scroll <code>delta_x</code>/<code>delta_y</code> | 197 * Indicates if the scroll <code>delta_x</code>/<code>delta_y</code> |
| 198 * indicates pages or lines to scroll by. When true, the user is requesting | 198 * indicates pages or lines to scroll by. When true, the user is requesting |
| 199 * to scroll by pages. | 199 * to scroll by pages. |
| 200 */ | 200 */ |
| 201 PP_Bool scroll_by_page; | 201 PP_Bool scroll_by_page; |
| 202 }; | 202 }; |
| 203 | 203 |
| OLD | NEW |