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
3 // found in the LICENSE file.
5 #ifndef CONTENT_RENDERER_P2P_NETWORK_LIST_OBSERVER_H_
6 #define CONTENT_RENDERER_P2P_NETWORK_LIST_OBSERVER_H_
11 struct NetworkInterface
;
12 typedef std::vector
<NetworkInterface
> NetworkInterfaceList
;
17 class NetworkListObserver
{
19 virtual ~NetworkListObserver() {}
21 virtual void OnNetworkListChanged(
22 const net::NetworkInterfaceList
& list
) = 0;
25 NetworkListObserver() {}
28 } // namespace content
30 #endif // CONTENT_RENDERER_P2P_NETWORK_LIST_OBSERVER_H_