| OLD | NEW |
| 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 Loading... |
| 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 */) | |
| OLD | NEW |