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

Unified Diff: chromeos/components/tether/pref_names.h

Issue 2734033002: [CrOS Tether] Create the ActiveHost class, which stores metadata related to the current connection … (Closed)
Patch Set: Linted. 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/components/tether/pref_names.h
diff --git a/chromeos/components/tether/pref_names.h b/chromeos/components/tether/pref_names.h
index 7f5b92370efecd021be33fbbb51feec4a6d00912..d94732c250b5e7e255d5c889ffedd4e94e4383e0 100644
--- a/chromeos/components/tether/pref_names.h
+++ b/chromeos/components/tether/pref_names.h
@@ -22,6 +22,18 @@ extern const char kMostRecentTetherAvailablilityResponderIds[];
// a response code indicating that its hotspot has started up successfully.
extern const char kMostRecentConnectTetheringResponderId[];
+// The status of the active host. The value stored for this key is the integer
+// version of an ActiveHost::ActiveHostStatus enumeration value.
+extern const char kActiveHostStatus[];
+
+// The device ID of the active host. If there is no active host, the value at
Ryan Hansberry 2017/03/09 19:18:20 value of
Kyle Horimoto 2017/03/09 19:29:28 I think you're misreading this. The value of this
Ryan Hansberry 2017/03/09 19:48:20 Oops :)
+// this key is "".
+extern const char kActiveHostDeviceId[];
+
+// The network ID of the active host. If there is no active host, the value at
Ryan Hansberry 2017/03/09 19:18:20 value of
Kyle Horimoto 2017/03/09 19:29:28 Same.
+// this key is "".
+extern const char kTetherNetworkId[];
Ryan Hansberry 2017/03/09 19:18:20 In the network stack, there will simultaneously be
Kyle Horimoto 2017/03/09 19:29:28 Done.
+
} // namespace prefs
} // namespace tether

Powered by Google App Engine
This is Rietveld 408576698