diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 15:38:48 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 15:38:48 +0000 |
commit | 493d1421853518d3b16a7b103311ea4fa1988341 (patch) | |
tree | abc9bd73da85786a933666c8c6042a62aabd7c4b /ppapi/ppapi_cpp.gypi | |
parent | b18d98d7de474db2a2057d0e3aaaac9bd87a2f41 (diff) | |
download | chromium_src-493d1421853518d3b16a7b103311ea4fa1988341.zip chromium_src-493d1421853518d3b16a7b103311ea4fa1988341.tar.gz chromium_src-493d1421853518d3b16a7b103311ea4fa1988341.tar.bz2 |
Add interfaces for requesting and receiving input event resources.
This converts the input event from a C struct to a resource to give us more
ability to change over time. This patch includes a proxy and a C++ wrapper for
this resource.
You now have to register for classes of input events. No events are sent by
default. This also allows us to specify whether the events support bubbling
or not, which allows us to better-optimize IPC.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/7285010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_cpp.gypi')
-rw-r--r-- | ppapi/ppapi_cpp.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ppapi/ppapi_cpp.gypi b/ppapi/ppapi_cpp.gypi index b9a87da..1fbd940 100644 --- a/ppapi/ppapi_cpp.gypi +++ b/ppapi/ppapi_cpp.gypi @@ -37,6 +37,7 @@ 'c/ppb_file_system.h', 'c/ppb_graphics_2d.h', 'c/ppb_image_data.h', + 'c/ppb_input_event.h', 'c/ppb_instance.h', 'c/ppb_messaging.h', 'c/ppb_url_loader.h', @@ -44,6 +45,7 @@ 'c/ppb_url_response_info.h', 'c/ppb_var.h', 'c/ppp.h', + 'c/ppp_input_event.h', 'c/ppp_instance.h', 'c/ppp_messaging.h', @@ -149,6 +151,8 @@ 'cpp/graphics_2d.h', 'cpp/image_data.cc', 'cpp/image_data.h', + 'cpp/input_event.cc', + 'cpp/input_event.h', 'cpp/instance.cc', 'cpp/instance.h', 'cpp/logging.h', |