summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authoryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-16 02:26:56 +0000
committeryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-16 02:26:56 +0000
commit1314f5f673e337ec559c973be90abf5db7ebf17e (patch)
tree4572a46d5c654645facd1595abeff44b7d6fd394 /ppapi/api
parent7f26918a79ab8fd9ec095ccece9b3ba3002e6207 (diff)
downloadchromium_src-1314f5f673e337ec559c973be90abf5db7ebf17e.zip
chromium_src-1314f5f673e337ec559c973be90abf5db7ebf17e.tar.gz
chromium_src-1314f5f673e337ec559c973be90abf5db7ebf17e.tar.bz2
Move PPB/PPP_MouseLock out of dev/.
BUG=41781 TEST=None Review URL: http://codereview.chromium.org/8295023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/ppb_mouse_lock.idl (renamed from ppapi/api/dev/ppb_mouse_lock_dev.idl)8
-rw-r--r--ppapi/api/ppp_mouse_lock.idl (renamed from ppapi/api/dev/ppp_mouse_lock_dev.idl)8
2 files changed, 8 insertions, 8 deletions
diff --git a/ppapi/api/dev/ppb_mouse_lock_dev.idl b/ppapi/api/ppb_mouse_lock.idl
index 7898994..8c5a96f 100644
--- a/ppapi/api/dev/ppb_mouse_lock_dev.idl
+++ b/ppapi/api/ppb_mouse_lock.idl
@@ -4,21 +4,21 @@
*/
/**
- * This file defines the <code>PPB_MouseLock_Dev</code> interface.
+ * This file defines the <code>PPB_MouseLock</code> interface.
*/
label Chrome {
- M15 = 0.1
+ M16 = 1.0
};
/**
- * The <code>PPB_MouseLock_Dev</code> interface is implemented by the browser.
+ * The <code>PPB_MouseLock</code> interface is implemented by the browser.
* It provides a way of locking the target of mouse events to a single plugin
* instance and removing the cursor from view. This is a useful input mode for
* certain classes of applications, especially first person perspective 3D
* applications and 3D modelling software.
*/
-interface PPB_MouseLock_Dev {
+interface PPB_MouseLock {
/**
* Requests the mouse to be locked. The browser will permit mouse lock only
* while the tab is in fullscreen mode.
diff --git a/ppapi/api/dev/ppp_mouse_lock_dev.idl b/ppapi/api/ppp_mouse_lock.idl
index 0ebeb97..07f0ea6 100644
--- a/ppapi/api/dev/ppp_mouse_lock_dev.idl
+++ b/ppapi/api/ppp_mouse_lock.idl
@@ -4,18 +4,18 @@
*/
/**
- * This file defines the <code>PPP_MouseLock_Dev</code> interface.
+ * This file defines the <code>PPP_MouseLock</code> interface.
*/
label Chrome {
- M15 = 0.1
+ M16 = 1.0
};
/**
- * The <code>PPP_MouseLock_Dev</code> interface contains pointers to functions
+ * The <code>PPP_MouseLock</code> interface contains pointers to functions
* that you must implement to receive mouse lock events from the browser.
*/
-interface PPP_MouseLock_Dev {
+interface PPP_MouseLock {
/**
* Called when the instance loses the mouse lock, e.g. because the user
* pressed the ESC key.