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

Side by Side Diff: remoting/protocol/pepper_network_manager.h

Issue 10103016: Move PepperNetworkManager to client/plugin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 #ifndef REMOTING_PROTOCOL_PEPPER_NETWORK_MANAGER_H_
6 #define REMOTING_PROTOCOL_PEPPER_NETWORK_MANAGER_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h"
10 #include "ppapi/cpp/instance_handle.h"
11 #include "ppapi/cpp/private/network_monitor_private.h"
12 #include "third_party/libjingle/source/talk/base/network.h"
13
14 namespace pp {
15 class NetworkListPrivate;
16 } // namespace pp
17
18 namespace remoting {
19 namespace protocol {
20
21 // PepperNetworkManager uses the PPB_NetworkMonitor_Private API to
22 // implement the NetworkManager interface that libjingle uses to
23 // monitor the host system's network interfaces.
24 class PepperNetworkManager : public talk_base::NetworkManagerBase {
25 public:
26 PepperNetworkManager(const pp::InstanceHandle& instance);
27 virtual ~PepperNetworkManager();
28
29 // NetworkManager interface.
30 virtual void StartUpdating() OVERRIDE;
31 virtual void StopUpdating() OVERRIDE;
32
33 private:
34 static void OnNetworkListCallbackHandler(void* user_data,
35 PP_Resource list_resource);
36
37 void OnNetworkList(const pp::NetworkListPrivate& list);
38
39 void SendNetworksChangedSignal();
40
41 pp::NetworkMonitorPrivate monitor_;
42 int start_count_;
43 bool network_list_received_;
44
45 base::WeakPtrFactory<PepperNetworkManager> weak_factory_;
46 };
47
48 } // namespace protocol
49 } // namespace remoting
50
51 #endif // REMOTING_PROTOCOL_PEPPER_NETWORK_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698