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

Unified Diff: webrtc/base/network.h

Issue 1803063004: Reset the BWE when the network changes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/call.h » ('j') | webrtc/call.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/network.h
diff --git a/webrtc/base/network.h b/webrtc/base/network.h
index 680c005ea29ace284f9aae3c7bf4c07f9694f6a0..b788332d4d303ee4642cb90558b381a396254cb3 100644
--- a/webrtc/base/network.h
+++ b/webrtc/base/network.h
@@ -339,6 +339,9 @@ class Network {
AdapterType type() const { return type_; }
void set_type(AdapterType type) { type_ = type; }
+ // Converts the key to an integer id.
+ int id() const { return static_cast<int>(std::hash<std::string>()(key_)); }
pthatcher1 2016/03/16 21:22:02 We should probably make this a uint16_t or uint32_
honghaiz3 2016/03/17 03:38:26 Done.
+
int preference() const { return preference_; }
void set_preference(int preference) { preference_ = preference; }
« no previous file with comments | « no previous file | webrtc/call.h » ('j') | webrtc/call.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698