summaryrefslogtreecommitdiffstats
path: root/webkit/glue/plugins/pepper_plugin_module.cc
diff options
context:
space:
mode:
authornfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-14 00:57:18 +0000
committernfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-14 00:57:18 +0000
commita931dfecf92536bcd0e49efab95c098a73e218b0 (patch)
tree64f5be96817e33a4b3d5a2d6eae669aa33374fe3 /webkit/glue/plugins/pepper_plugin_module.cc
parenteb19dd80c9487e313acfd736a06695e1832c289b (diff)
downloadchromium_src-a931dfecf92536bcd0e49efab95c098a73e218b0.zip
chromium_src-a931dfecf92536bcd0e49efab95c098a73e218b0.tar.gz
chromium_src-a931dfecf92536bcd0e49efab95c098a73e218b0.tar.bz2
Preliminary Network P2P Pepper API
(interface surfacing, stub impl) DEPS ppapi revision # will be updated at check-in Review URL: http://codereview.chromium.org/3350017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59312 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/pepper_plugin_module.cc')
-rw-r--r--webkit/glue/plugins/pepper_plugin_module.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/plugins/pepper_plugin_module.cc b/webkit/glue/plugins/pepper_plugin_module.cc
index 230c31f..2286285 100644
--- a/webkit/glue/plugins/pepper_plugin_module.cc
+++ b/webkit/glue/plugins/pepper_plugin_module.cc
@@ -25,6 +25,7 @@
#include "third_party/ppapi/c/dev/ppb_opengles_dev.h"
#include "third_party/ppapi/c/dev/ppb_scrollbar_dev.h"
#include "third_party/ppapi/c/dev/ppb_testing_dev.h"
+#include "third_party/ppapi/c/dev/ppb_transport_dev.h"
#include "third_party/ppapi/c/dev/ppb_url_loader_dev.h"
#include "third_party/ppapi/c/dev/ppb_url_request_info_dev.h"
#include "third_party/ppapi/c/dev/ppb_url_response_info_dev.h"
@@ -58,6 +59,7 @@
#include "webkit/glue/plugins/pepper_private.h"
#include "webkit/glue/plugins/pepper_resource_tracker.h"
#include "webkit/glue/plugins/pepper_scrollbar.h"
+#include "webkit/glue/plugins/pepper_transport.h"
#include "webkit/glue/plugins/pepper_url_loader.h"
#include "webkit/glue/plugins/pepper_url_request_info.h"
#include "webkit/glue/plugins/pepper_url_response_info.h"
@@ -201,6 +203,8 @@ const void* GetInterface(const char* name) {
if (strcmp(name, PPB_OPENGLES_DEV_INTERFACE) == 0)
return Graphics3D::GetOpenGLESInterface();
#endif // ENABLE_GPU
+ if (strcmp(name, PPB_TRANSPORT_DEV_INTERFACE) == 0)
+ return Transport::GetInterface();
if (strcmp(name, PPB_URLLOADER_DEV_INTERFACE) == 0)
return URLLoader::GetInterface();
if (strcmp(name, PPB_URLREQUESTINFO_DEV_INTERFACE) == 0)