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

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

Issue 10909154: Remove PPAPI dependency on 'net'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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/ppb_host_resolver_shared.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_network_monitor_private_impl.cc
===================================================================
--- webkit/plugins/ppapi/ppb_network_monitor_private_impl.cc (revision 156377)
+++ webkit/plugins/ppapi/ppb_network_monitor_private_impl.cc (working copy)
@@ -66,7 +66,7 @@
network.addresses.resize(
1, ::ppapi::NetAddressPrivateImpl::kInvalidNetAddress);
bool result = ::ppapi::NetAddressPrivateImpl::IPEndPointToNetAddress(
- net::IPEndPoint(list[i].address, 0), &(network.addresses[0]));
+ list[i].address, 0, &(network.addresses[0]));
DCHECK(result);
// TODO(sergeyu): Currently net::NetworkInterfaceList provides
« no previous file with comments | « ppapi/shared_impl/private/ppb_host_resolver_shared.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698