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

Unified Diff: extensions/browser/api/socket/socket_api.cc

Issue 730623002: Rename network_prefix to prefix_length in NetworkInterface structure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: extensions/browser/api/socket/socket_api.cc
diff --git a/extensions/browser/api/socket/socket_api.cc b/extensions/browser/api/socket/socket_api.cc
index 509b060a1b20d6ae02e13d67491bede13f8aa318..07e8d01b484f5118e836a069c6886616c05ad764 100644
--- a/extensions/browser/api/socket/socket_api.cc
+++ b/extensions/browser/api/socket/socket_api.cc
@@ -711,7 +711,7 @@ void SocketGetNetworkListFunction::SendResponseOnUIThread(
make_linked_ptr(new core_api::socket::NetworkInterface);
info->name = i->name;
info->address = net::IPAddressToString(i->address);
- info->prefix_length = i->network_prefix;
+ info->prefix_length = i->prefix_length;
create_arg.push_back(info);
}
« no previous file with comments | « content/renderer/p2p/ipc_network_manager.cc ('k') | extensions/browser/api/system_network/system_network_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698