OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 /** | |
7 * This file defines the <code>PPP_MouseLock_Dev</code> interface. | |
8 */ | |
9 | |
10 label Chrome { | |
11 M15 = 0.1 | |
12 }; | |
13 | |
14 /** | |
15 * The <code>PPP_MouseLock_Dev</code> interface contains pointers to functions | |
16 * that you must implement to receive mouse lock events from the browser. | |
17 */ | |
18 interface PPP_MouseLock_Dev { | |
19 /** | |
20 * Called when the instance loses the mouse lock, e.g. because the user | |
21 * pressed the ESC key. | |
22 * | |
23 * @param[in] instance A <code>PP_Instance</code> identifying one instance | |
24 * of a module. | |
25 */ | |
26 void MouseLockLost([in] PP_Instance instance); | |
27 }; | |
28 | |
OLD | NEW |