summaryrefslogtreecommitdiff
path: root/Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp')
-rw-r--r--Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp b/Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp
index 0f9d41ca2..d78fd6757 100644
--- a/Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp
+++ b/Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp
@@ -73,17 +73,17 @@ RTCIceCandidate::~RTCIceCandidate()
{
}
-const String& RTCIceCandidate::candidate()
+const String& RTCIceCandidate::candidate() const
{
return m_descriptor->candidate();
}
-const String& RTCIceCandidate::sdpMid()
+const String& RTCIceCandidate::sdpMid() const
{
return m_descriptor->sdpMid();
}
-unsigned short RTCIceCandidate::sdpMLineIndex()
+unsigned short RTCIceCandidate::sdpMLineIndex() const
{
return m_descriptor->sdpMLineIndex();
}