OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_NETWORK_NETWORK_STATE_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_STATE_H_ |
6 #define CHROMEOS_NETWORK_NETWORK_STATE_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_STATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 const std::string& device_path() const { return device_path_; } | 44 const std::string& device_path() const { return device_path_; } |
45 const std::string& guid() const { return guid_; } | 45 const std::string& guid() const { return guid_; } |
46 const std::string& connection_state() const { return connection_state_; } | 46 const std::string& connection_state() const { return connection_state_; } |
47 const std::string& profile_path() const { return profile_path_; } | 47 const std::string& profile_path() const { return profile_path_; } |
48 const std::string& error() const { return error_; } | 48 const std::string& error() const { return error_; } |
49 bool auto_connect() const { return auto_connect_; } | 49 bool auto_connect() const { return auto_connect_; } |
50 bool favorite() const { return favorite_; } | 50 bool favorite() const { return favorite_; } |
51 int priority() const { return priority_; } | 51 int priority() const { return priority_; } |
52 // Wireless property accessors | 52 // Wireless property accessors |
53 int signal_strength() const { return signal_strength_; } | 53 int signal_strength() const { return signal_strength_; } |
| 54 bool connectable() const { return connectable_; } |
| 55 // Wifi property accessors |
| 56 bool passphrase_required() const { return passphrase_required_; } |
54 // Cellular property accessors | 57 // Cellular property accessors |
55 const std::string& technology() const { return technology_; } | 58 const std::string& technology() const { return technology_; } |
56 const std::string& activation_state() const { return activation_state_; } | 59 const std::string& activation_state() const { return activation_state_; } |
57 const std::string& roaming() const { return roaming_; } | 60 const std::string& roaming() const { return roaming_; } |
58 bool activate_over_non_cellular_networks() const { | 61 bool activate_over_non_cellular_networks() const { |
59 return activate_over_non_cellular_networks_; | 62 return activate_over_non_cellular_networks_; |
60 } | 63 } |
61 bool cellular_out_of_credits() const { return cellular_out_of_credits_; } | 64 bool cellular_out_of_credits() const { return cellular_out_of_credits_; } |
62 | 65 |
63 bool IsConnectedState() const; | 66 bool IsConnectedState() const; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 bool auto_connect_; | 99 bool auto_connect_; |
97 bool favorite_; | 100 bool favorite_; |
98 int priority_; | 101 int priority_; |
99 // IPConfig properties. | 102 // IPConfig properties. |
100 // Note: These do not correspond to actual Shill.Service properties | 103 // Note: These do not correspond to actual Shill.Service properties |
101 // but are derived from the service's corresponding IPConfig object. | 104 // but are derived from the service's corresponding IPConfig object. |
102 std::string ip_address_; | 105 std::string ip_address_; |
103 std::vector<std::string> dns_servers_; | 106 std::vector<std::string> dns_servers_; |
104 // Wireless properties | 107 // Wireless properties |
105 int signal_strength_; | 108 int signal_strength_; |
| 109 bool connectable_; |
106 // Wifi properties | 110 // Wifi properties |
107 std::string hex_ssid_; | 111 std::string hex_ssid_; |
108 std::string country_code_; | 112 std::string country_code_; |
| 113 bool passphrase_required_; |
109 // Cellular properties | 114 // Cellular properties |
110 std::string technology_; | 115 std::string technology_; |
111 std::string activation_state_; | 116 std::string activation_state_; |
112 std::string roaming_; | 117 std::string roaming_; |
113 bool activate_over_non_cellular_networks_; | 118 bool activate_over_non_cellular_networks_; |
114 bool cellular_out_of_credits_; | 119 bool cellular_out_of_credits_; |
115 | 120 |
116 DISALLOW_COPY_AND_ASSIGN(NetworkState); | 121 DISALLOW_COPY_AND_ASSIGN(NetworkState); |
117 }; | 122 }; |
118 | 123 |
119 } // namespace chromeos | 124 } // namespace chromeos |
120 | 125 |
121 #endif // CHROMEOS_NETWORK_NETWORK_STATE_H_ | 126 #endif // CHROMEOS_NETWORK_NETWORK_STATE_H_ |
OLD | NEW |