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

Unified Diff: chrome/common/local_discovery/local_discovery_messages.h

Issue 1534583002: Migrate Local Discovery from net::IPAddressNumber to net::IPAddress. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: chrome/common/local_discovery/local_discovery_messages.h
diff --git a/chrome/common/local_discovery/local_discovery_messages.h b/chrome/common/local_discovery/local_discovery_messages.h
index e597da3666de544923205bbc915b2e66cfd89c0a..d1b5b7ea1e81ed479d0c6aeba4a3fa9cd9f31fe7 100644
--- a/chrome/common/local_discovery/local_discovery_messages.h
+++ b/chrome/common/local_discovery/local_discovery_messages.h
@@ -130,9 +130,8 @@ IPC_MESSAGE_CONTROL3(
local_discovery::ServiceDescription /* description */)
// Notifies browser process about local domain resolution results.
-IPC_MESSAGE_CONTROL4(
- LocalDiscoveryHostMsg_LocalDomainResolverCallback,
- uint64 /* id */,
- bool /* success */,
- net::IPAddressNumber /* ip_address_ipv4 */,
- net::IPAddressNumber /* ip_address_ipv6 */)
+IPC_MESSAGE_CONTROL4(LocalDiscoveryHostMsg_LocalDomainResolverCallback,
+ uint64 /* id */,
+ bool /* success */,
+ net::IPAddress /* ip_address_ipv4 */,
+ net::IPAddress /* ip_address_ipv6 */)

Powered by Google App Engine
This is Rietveld 408576698