summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-13 02:39:36 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-13 02:39:36 +0000
commit01fe08ad788807e609ef24c0e230f3cb0dff6409 (patch)
tree0f0ba06192e801841d935b99494439477e3c4c93 /ppapi/api
parent4f12cc5fdb84556feecec434ccd07aee7c9bff34 (diff)
downloadchromium_src-01fe08ad788807e609ef24c0e230f3cb0dff6409.zip
chromium_src-01fe08ad788807e609ef24c0e230f3cb0dff6409.tar.gz
chromium_src-01fe08ad788807e609ef24c0e230f3cb0dff6409.tar.bz2
Cleanup: Remove some extraneous spaces from ppb_input_event.idl.
Review URL: http://codereview.chromium.org/8539041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109816 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/ppb_input_event.idl22
1 files changed, 11 insertions, 11 deletions
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl
index 781f502..8061415 100644
--- a/ppapi/api/ppb_input_event.idl
+++ b/ppapi/api/ppb_input_event.idl
@@ -17,21 +17,21 @@ label Chrome {
*/
[assert_size(4)]
enum PP_InputEvent_Type {
- PP_INPUTEVENT_TYPE_UNDEFINED = -1,
+ PP_INPUTEVENT_TYPE_UNDEFINED = -1,
/**
* Notification that a mouse button was pressed.
*
* Register for this event using the PP_INPUTEVENT_CLASS_MOUSE class.
*/
- PP_INPUTEVENT_TYPE_MOUSEDOWN = 0,
+ PP_INPUTEVENT_TYPE_MOUSEDOWN = 0,
/**
* Notification that a mouse button was released.
*
* Register for this event using the PP_INPUTEVENT_CLASS_MOUSE class.
*/
- PP_INPUTEVENT_TYPE_MOUSEUP = 1,
+ PP_INPUTEVENT_TYPE_MOUSEUP = 1,
/**
* Notification that a mouse button was moved when it is over the instance
@@ -39,28 +39,28 @@ enum PP_InputEvent_Type {
*
* Register for this event using the PP_INPUTEVENT_CLASS_MOUSE class.
*/
- PP_INPUTEVENT_TYPE_MOUSEMOVE = 2,
+ PP_INPUTEVENT_TYPE_MOUSEMOVE = 2,
/**
* Notification that the mouse entered the instance's bounds.
*
* Register for this event using the PP_INPUTEVENT_CLASS_MOUSE class.
*/
- PP_INPUTEVENT_TYPE_MOUSEENTER = 3,
+ PP_INPUTEVENT_TYPE_MOUSEENTER = 3,
/**
* Notification that a mouse left the instance's bounds.
*
* Register for this event using the PP_INPUTEVENT_CLASS_MOUSE class.
*/
- PP_INPUTEVENT_TYPE_MOUSELEAVE = 4,
+ PP_INPUTEVENT_TYPE_MOUSELEAVE = 4,
/**
* Notification that the scroll wheel was used.
*
* Register for this event using the PP_INPUTEVENT_CLASS_WHEEL class.
*/
- PP_INPUTEVENT_TYPE_WHEEL = 5,
+ PP_INPUTEVENT_TYPE_WHEEL = 5,
/**
* Notification that a key transitioned from "up" to "down".
@@ -68,7 +68,7 @@ enum PP_InputEvent_Type {
*
* Register for this event using the PP_INPUTEVENT_CLASS_KEYBOARD class.
*/
- PP_INPUTEVENT_TYPE_RAWKEYDOWN = 6,
+ PP_INPUTEVENT_TYPE_RAWKEYDOWN = 6,
/**
* Notification that a key was pressed. This does not necessarily correspond
@@ -77,14 +77,14 @@ enum PP_InputEvent_Type {
*
* Register for this event using the PP_INPUTEVENT_CLASS_KEYBOARD class.
*/
- PP_INPUTEVENT_TYPE_KEYDOWN = 7,
+ PP_INPUTEVENT_TYPE_KEYDOWN = 7,
/**
* Notification that a key was released.
*
* Register for this event using the PP_INPUTEVENT_CLASS_KEYBOARD class.
*/
- PP_INPUTEVENT_TYPE_KEYUP = 8,
+ PP_INPUTEVENT_TYPE_KEYUP = 8,
/**
* Notification that a character was typed. Use this for text input. Key
@@ -93,7 +93,7 @@ enum PP_InputEvent_Type {
*
* Register for this event using the PP_INPUTEVENT_CLASS_KEYBOARD class.
*/
- PP_INPUTEVENT_TYPE_CHAR = 9,
+ PP_INPUTEVENT_TYPE_CHAR = 9,
/**
* TODO(brettw) when is this used?