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

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: 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
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..b35954bfd2fb42a8781133a4709950b96565b7ac 100644
--- a/webkit/plugins/ppapi/resource_creation_impl.cc
+++ b/webkit/plugins/ppapi/resource_creation_impl.cc
@@ -139,13 +139,13 @@ PP_Resource ResourceCreationImpl::CreateFlashNetConnector(
return (new PPB_Flash_NetConnector_Impl(instance))->GetReference();
}
-PP_Resource ResourceCreationImpl::CreateFlashTCPSocket(
+PP_Resource ResourceCreationImpl::CreateTCPSocket(
yzshen1 2011/11/09 23:53:55 Sort, please.
Dmitry Polukhin 2011/11/10 15:10:11 Done.
PP_Instance instance) {
// Creating TCP socket resource at the renderer side is not supported.
return 0;
}
-PP_Resource ResourceCreationImpl::CreateFlashUDPSocket(
+PP_Resource ResourceCreationImpl::CreateUDPSocket(
PP_Instance instance) {
// Creating UDP socket resource at the renderer side is not supported.
return 0;

Powered by Google App Engine
This is Rietveld 408576698