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 for receiving input events from the browser. | 7 * This file defines the API for receiving input events from the browser. |
8 */ | 8 */ |
9 | 9 |
10 label Chrome { | 10 label Chrome { |
11 M14 = 0.1 | 11 M14 = 0.1 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 * @return PP_TRUE if the event was handled, PP_FALSE if not. If you have | 54 * @return PP_TRUE if the event was handled, PP_FALSE if not. If you have |
55 * registered to filter this class of events by calling | 55 * registered to filter this class of events by calling |
56 * RequestFilteringInputEvents, and you return PP_FALSE, the event will | 56 * RequestFilteringInputEvents, and you return PP_FALSE, the event will |
57 * be forwarded to the page (and eventually the browser) for the default | 57 * be forwarded to the page (and eventually the browser) for the default |
58 * handling. For non-filtered events, the return value will be ignored. | 58 * handling. For non-filtered events, the return value will be ignored. |
59 */ | 59 */ |
60 PP_Bool HandleInputEvent([in] PP_Instance instance, | 60 PP_Bool HandleInputEvent([in] PP_Instance instance, |
61 [in] PP_Resource input_event); | 61 [in] PP_Resource input_event); |
62 }; | 62 }; |
63 | 63 |
OLD | NEW |