blob: 7711eed662bc62fbd71b8d8ebefbe6ecc36ceee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_CLIENT_PLUGIN_PEPPER_NETWORK_MANAGER_H_
#define REMOTING_CLIENT_PLUGIN_PEPPER_NETWORK_MANAGER_H_
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "ppapi/cpp/instance_handle.h"
#include "ppapi/cpp/network_monitor.h"
#include "ppapi/utility/completion_callback_factory.h"
#include "third_party/libjingle/source/talk/base/network.h"
namespace pp {
class NetworkList;
} // namespace pp
namespace remoting {
// PepperNetworkManager uses the PPB_NetworkMonitor API to
// implement the NetworkManager interface that libjingle uses to
// monitor the host system's network interfaces.
class PepperNetworkManager : public talk_base::NetworkManagerBase {
public:
PepperNetworkManager(const pp::InstanceHandle& instance);
virtual ~PepperNetworkManager();
// NetworkManager interface.
virtual void StartUpdating() OVERRIDE;
virtual void StopUpdating() OVERRIDE;
private:
static void OnNetworkListCallbackHandler(void* user_data,
PP_Resource list_resource);
void OnNetworkList(int32_t result, const pp::NetworkList& list);
void SendNetworksChangedSignal();
pp::NetworkMonitor monitor_;
int start_count_;
bool network_list_received_;
pp::CompletionCallbackFactory<PepperNetworkManager> callback_factory_;
base::WeakPtrFactory<PepperNetworkManager> weak_factory_;
};
} // namespace remoting
#endif // REMOTING_CLIENT_PLUGIN_PEPPER_NETWORK_MANAGER_H_
|