summaryrefslogtreecommitdiffstats
path: root/ppapi/native_client
diff options
context:
space:
mode:
authorbbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-20 21:18:07 +0000
committerbbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-20 21:18:07 +0000
commited33e2eb202e0efc5bba8f275fd126aebdc91ada (patch)
tree5560e2bd728baaca0c72f4b31f03dc9761090e64 /ppapi/native_client
parent52dc84021b685da622a96e0d0c35dbc3f1197ada (diff)
downloadchromium_src-ed33e2eb202e0efc5bba8f275fd126aebdc91ada.zip
chromium_src-ed33e2eb202e0efc5bba8f275fd126aebdc91ada.tar.gz
chromium_src-ed33e2eb202e0efc5bba8f275fd126aebdc91ada.tar.bz2
Add functions to generate input events to PPB_Testing_Dev. These make
it possible to test APIs that require user gestures and other input events. BUG=none TEST=none Review URL: http://codereview.chromium.org/8413021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r--ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
index 8c571e2b..0f318ef 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc
@@ -79,7 +79,8 @@ InterfaceMapElement interface_map[] = {
true },
{ PPB_PDF_INTERFACE, PluginPDF::GetInterface(), true },
{ PPB_SCROLLBAR_DEV_INTERFACE, PluginScrollbar::GetInterface(), true },
- { PPB_TESTING_DEV_INTERFACE, PluginTesting::GetInterface(), true },
+ { PPB_TESTING_DEV_INTERFACE_0_7, PluginTesting::GetInterface(), true },
+ { PPB_TESTING_DEV_INTERFACE_0_8, PluginTesting::GetInterface(), true },
{ PPB_URLLOADER_INTERFACE, PluginURLLoader::GetInterface(), true },
{ PPB_URLREQUESTINFO_INTERFACE, PluginURLRequestInfo::GetInterface(), true },
{ PPB_URLRESPONSEINFO_INTERFACE, PluginURLResponseInfo::GetInterface(),