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

Side by Side 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 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Defines local discovery messages between the browser and utility process. 5 // Defines local discovery messages between the browser and utility process.
6 6
7 // Multiple-included file, no traditional include guard. 7 // Multiple-included file, no traditional include guard.
8 #include <vector> 8 #include <vector>
9 9
10 #include "chrome/common/local_discovery/service_discovery_client.h" 10 #include "chrome/common/local_discovery/service_discovery_client.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 std::string /* service_name */) 123 std::string /* service_name */)
124 124
125 // Notifies browser process about service resolution results. 125 // Notifies browser process about service resolution results.
126 IPC_MESSAGE_CONTROL3( 126 IPC_MESSAGE_CONTROL3(
127 LocalDiscoveryHostMsg_ResolverCallback, 127 LocalDiscoveryHostMsg_ResolverCallback,
128 uint64 /* id */, 128 uint64 /* id */,
129 local_discovery::ServiceResolver::RequestStatus /* status */, 129 local_discovery::ServiceResolver::RequestStatus /* status */,
130 local_discovery::ServiceDescription /* description */) 130 local_discovery::ServiceDescription /* description */)
131 131
132 // Notifies browser process about local domain resolution results. 132 // Notifies browser process about local domain resolution results.
133 IPC_MESSAGE_CONTROL4( 133 IPC_MESSAGE_CONTROL4(LocalDiscoveryHostMsg_LocalDomainResolverCallback,
134 LocalDiscoveryHostMsg_LocalDomainResolverCallback, 134 uint64 /* id */,
135 uint64 /* id */, 135 bool /* success */,
136 bool /* success */, 136 net::IPAddress /* ip_address_ipv4 */,
137 net::IPAddressNumber /* ip_address_ipv4 */, 137 net::IPAddress /* ip_address_ipv6 */)
138 net::IPAddressNumber /* ip_address_ipv6 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698