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

Unified Diff: ppapi/shared_impl/private/net_address_private_impl.cc

Issue 704133005: Pepper: Add support for multicast in PPB_UDPSocket API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo: SetMulticastInterface -> SetMulticastTimeToLive Created 5 years, 9 months 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 | « ppapi/shared_impl/private/net_address_private_impl.h ('k') | ppapi/tests/test_udp_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/private/net_address_private_impl.cc
diff --git a/ppapi/shared_impl/private/net_address_private_impl.cc b/ppapi/shared_impl/private/net_address_private_impl.cc
index 43df743223fa4c4c6c7035740cfd72d9d5e1673d..7515592c006d947c7ed6ba57c2bb24a7126bc3b4 100644
--- a/ppapi/shared_impl/private/net_address_private_impl.cc
+++ b/ppapi/shared_impl/private/net_address_private_impl.cc
@@ -518,6 +518,12 @@ std::string NetAddressPrivateImpl::DescribeNetAddress(
}
// static
+void NetAddressPrivateImpl::GetAnyAddress(PP_Bool is_ipv6,
+ PP_NetAddress_Private* addr) {
+ ppapi::GetAnyAddress(is_ipv6, addr);
+}
+
+// static
void NetAddressPrivateImpl::CreateNetAddressPrivateFromIPv4Address(
const PP_NetAddress_IPv4& ipv4_addr,
PP_NetAddress_Private* addr) {
« no previous file with comments | « ppapi/shared_impl/private/net_address_private_impl.h ('k') | ppapi/tests/test_udp_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698