Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: webkit/plugins/ppapi/resource_creation_impl.cc

Issue 8506016: Remove 'Flash' from TCP/UDP Pepper interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolved last comments Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/resource_creation_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/resource_creation_impl.cc
diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
index 2a02112cdbaee6277f744651168a2d0165e82fff..bf74fc983d31cce5985a98cd5751a0ef39796d25 100644
--- a/webkit/plugins/ppapi/resource_creation_impl.cc
+++ b/webkit/plugins/ppapi/resource_creation_impl.cc
@@ -139,18 +139,6 @@ PP_Resource ResourceCreationImpl::CreateFlashNetConnector(
return (new PPB_Flash_NetConnector_Impl(instance))->GetReference();
}
-PP_Resource ResourceCreationImpl::CreateFlashTCPSocket(
- PP_Instance instance) {
- // Creating TCP socket resource at the renderer side is not supported.
- return 0;
-}
-
-PP_Resource ResourceCreationImpl::CreateFlashUDPSocket(
- PP_Instance instance) {
- // Creating UDP socket resource at the renderer side is not supported.
- return 0;
-}
-
PP_Resource ResourceCreationImpl::CreateFontObject(
PP_Instance instance,
const PP_FontDescription_Dev* description) {
@@ -255,6 +243,12 @@ PP_Resource ResourceCreationImpl::CreateSurface3D(
return PPB_Surface3D_Impl::Create(instance, config, attrib_list);
}
+
+PP_Resource ResourceCreationImpl::CreateTCPSocketPrivate(PP_Instance instance) {
+ // Creating TCP socket resource at the renderer side is not supported.
+ return 0;
+}
+
PP_Resource ResourceCreationImpl::CreateTransport(PP_Instance instance,
const char* name,
PP_TransportType type) {
@@ -263,6 +257,11 @@ PP_Resource ResourceCreationImpl::CreateTransport(PP_Instance instance,
#endif
}
+PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) {
+ // Creating UDP socket resource at the renderer side is not supported.
+ return 0;
+}
+
PP_Resource ResourceCreationImpl::CreateURLLoader(PP_Instance instance) {
return (new PPB_URLLoader_Impl(instance, false))->GetReference();
}
« no previous file with comments | « webkit/plugins/ppapi/resource_creation_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698