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

Side by Side Diff: ppapi/api/ppp_mouse_lock.idl

Issue 8295023: Move PPB/PPP_MouseLock out of dev/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync and resolve conflicts. Created 9 years, 2 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
« no previous file with comments | « ppapi/api/ppb_mouse_lock.idl ('k') | ppapi/c/dev/ppb_mouse_lock_dev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5
6 /** 6 /**
7 * This file defines the <code>PPP_MouseLock_Dev</code> interface. 7 * This file defines the <code>PPP_MouseLock</code> interface.
8 */ 8 */
9 9
10 label Chrome { 10 label Chrome {
11 M15 = 0.1 11 M16 = 1.0
12 }; 12 };
13 13
14 /** 14 /**
15 * The <code>PPP_MouseLock_Dev</code> interface contains pointers to functions 15 * The <code>PPP_MouseLock</code> interface contains pointers to functions
16 * that you must implement to receive mouse lock events from the browser. 16 * that you must implement to receive mouse lock events from the browser.
17 */ 17 */
18 interface PPP_MouseLock_Dev { 18 interface PPP_MouseLock {
19 /** 19 /**
20 * Called when the instance loses the mouse lock, e.g. because the user 20 * Called when the instance loses the mouse lock, e.g. because the user
21 * pressed the ESC key. 21 * pressed the ESC key.
22 * 22 *
23 * @param[in] instance A <code>PP_Instance</code> identifying one instance 23 * @param[in] instance A <code>PP_Instance</code> identifying one instance
24 * of a module. 24 * of a module.
25 */ 25 */
26 void MouseLockLost([in] PP_Instance instance); 26 void MouseLockLost([in] PP_Instance instance);
27 }; 27 };
28 28
OLDNEW
« no previous file with comments | « ppapi/api/ppb_mouse_lock.idl ('k') | ppapi/c/dev/ppb_mouse_lock_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698