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

Side by Side Diff: chromeos/components/tether/pref_names.h

Issue 2713073002: [CrOS Tether] Create HostScanDevicePrioritizer, a class which prioritizes the order of connection a… (Closed)
Patch Set: hansberry@ comments. Created 3 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2017 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 CHROMEOS_COMPONENTS_TETHER_PREF_NAMES_H_
6 #define CHROMEOS_COMPONENTS_TETHER_PREF_NAMES_H_
7
8 namespace chromeos {
9
10 namespace tether {
11
12 namespace prefs {
13
14 // Preference name for the preference which stores IDs corresponding to devices
15 // which have most recently replied to a TetherAvailabilityRequest with a
16 // response code indicating that tethering is available. The value stored is a
17 // ListValue, with the most recent response residing at the start of the list.
18 extern const char kMostRecentTetherAvailablilityResponderIds[];
19
20 // Preference name for the preference which stores the ID corresponding to
21 // the device which has most recently replied to a ConnectTetheringRequest with
22 // a response code indicating that its hotspot has started up successfully.
23 extern const char kMostRecentConnectTetheringResponderId[];
24
25 } // namespace prefs
26
27 } // namespace tether
28
29 } // namespace chromeos
30
31 #endif // CHROMEOS_COMPONENTS_TETHER_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698