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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// Copyright (c) 2010 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 CHROME_BROWSER_CHROMEOS_NETWORK_LIST_H_
#define CHROME_BROWSER_CHROMEOS_NETWORK_LIST_H_
#include <vector>
#include "chrome/browser/chromeos/cros/network_library.h"
namespace chromeos {
// Represents list of currently available networks (Ethernet, Cellular, WiFi).
// TODO(nkostylev): Refactor network list which is also represented in
// NetworkMenuButton, InternetPageView.
class NetworkList {
public:
enum NetworkType {
NETWORK_EMPTY, // Non-initialized network item.
NETWORK_ETHERNET,
NETWORK_CELLULAR,
NETWORK_WIFI,
};
struct NetworkItem {
NetworkItem()
: network_type(NETWORK_EMPTY),
connected(false) {}
NetworkItem(NetworkType network_type,
string16 label,
WifiNetwork wifi_network,
CellularNetwork cellular_network)
: network_type(network_type),
label(label),
wifi_network(wifi_network),
cellular_network(cellular_network),
connected(false) {}
NetworkType network_type;
string16 label; // string representation of the network (shown in UI).
WifiNetwork wifi_network;
CellularNetwork cellular_network;
bool connected;
};
NetworkList();
virtual ~NetworkList() {}
// True if network list is empty.
bool IsEmpty() const {
return networks_.empty();
}
// Returns network by it's type and ssid (Wifi) or id (Cellular).
// If network is not available NULL is returned.
NetworkList::NetworkItem* GetNetworkById(NetworkType type,
const string16& id);
// Returns network index by it's type and ssid (Wifi) or id (Cellular).
// If network is not available -1 is returned.
int GetNetworkIndexById(NetworkType type, const string16& id) const;
// Returns number of networks.
size_t GetNetworkCount() const {
return networks_.size();
}
// Returns network by index.
NetworkList::NetworkItem* GetNetworkAt(int index);
// Callback from NetworkLibrary.
void NetworkChanged(chromeos::NetworkLibrary* network_lib);
private:
typedef std::vector<NetworkItem> NetworkItemVector;
// Cached list of all available networks.
NetworkItemVector networks_;
// True if Ethernet network is connected.
bool ethernet_connected_;
// Index of currently connected network. Ethernet has priority.
int connected_network_;
DISALLOW_COPY_AND_ASSIGN(NetworkList);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_NETWORK_LIST_H_
|