OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "chromeos/components/tether/pref_names.h" | 5 #include "chromeos/components/tether/pref_names.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 | 8 |
9 namespace tether { | 9 namespace tether { |
10 | 10 |
11 namespace prefs { | 11 namespace prefs { |
12 | 12 |
13 const char kMostRecentTetherAvailablilityResponderIds[] = | 13 const char kMostRecentTetherAvailablilityResponderIds[] = |
14 "tether.most_recent_tether_availability_responder_ids"; | 14 "tether.most_recent_tether_availability_responder_ids"; |
15 | 15 |
16 const char kMostRecentConnectTetheringResponderId[] = | 16 const char kMostRecentConnectTetheringResponderId[] = |
17 "tether.most_recent_connect_tethering_responder_ids"; | 17 "tether.most_recent_connect_tethering_responder_ids"; |
18 | 18 |
| 19 const char kActiveHostStatus[] = "tether.active_host_status"; |
| 20 |
| 21 const char kActiveHostDeviceId[] = "tether.active_host_device_id"; |
| 22 |
| 23 const char kWifiNetworkId[] = "tether.wifi_network_id"; |
| 24 |
19 } // namespace prefs | 25 } // namespace prefs |
20 | 26 |
21 } // namespace tether | 27 } // namespace tether |
22 | 28 |
23 } // namespace chromeos | 29 } // namespace chromeos |
OLD | NEW |