blob: 8144605e17bbb66c698c66291dce31140a4e7801 (
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
53
54
55
56
57
58
59
60
61
62
63
64
|
/* 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.
*/
/**
* This file defines the <code>PPB_NetworkMonitor_Private</code> interface.
*/
label Chrome {
M19 = 0.2
};
/**
* <code>PPB_NetworkMonitor_Callback</code> is a callback function
* type that is used to receive notifications about network
* configuration changes. The <code>network_list</code> passed to this
* callback is a <code>PPB_NetworkList_Private</code> resource that
* contains current configuration of network interfaces.
*/
typedef void PPB_NetworkMonitor_Callback([inout] mem_t user_data,
[in] PP_Resource network_list);
/**
* The <code>PPB_NetworkMonitor_Private</code> provides access to
* notifications of network configuration changes.
*/
interface PPB_NetworkMonitor_Private {
/**
* Starts network change monitoring. The specified
* <code>callback</code> will be called on the main thread once
* after this method is called (to supply the initial network
* configuarion) and then later every time network configuration
* changes. Notifications are stopped when the returned resource is
* destroyed. If the plugin doesn't have access to the network list
* then the callback will be called once with the
* <code>network_list</code> parameter is set to 0.
*
* @param[in] callback The callback that will be called every time
* network configuration changes or NULL to stop network monitoring.
*
* @param[inout] user_data The data to be passed to the callback on
* each call.
*
* @return A <code>PP_Resource</code> containing the created
* NetworkMonitor resource.
*/
PP_Resource Create([in] PP_Instance instance,
[in] PPB_NetworkMonitor_Callback callback,
[inout] mem_t user_data);
/**
* Determines if the specified <code>resource</code> is a
* <code>NetworkMonitor</code> object.
*
* @param[in] resource A <code>PP_Resource</code> resource.
*
* @return Returns <code>PP_TRUE</code> if <code>resource</code> is
* a <code>PPB_NetworkMonitor_Private</code>, <code>PP_FALSE</code>
* otherwise.
*/
PP_Bool IsNetworkMonitor([in] PP_Resource resource);
};
|