Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / platform / WebRTCICECandidate.h
index 47eb0a9..cd8572b 100644 (file)
 #include "WebPrivatePtr.h"
 #include "WebString.h"
 
-namespace WebCore {
-class RTCIceCandidateDescriptor;
-}
-
 namespace blink {
 
 class WebString;
@@ -65,6 +61,9 @@ public:
     BLINK_PLATFORM_EXPORT WebString candidate() const;
     BLINK_PLATFORM_EXPORT WebString sdpMid() const;
     BLINK_PLATFORM_EXPORT unsigned short sdpMLineIndex() const;
+    BLINK_PLATFORM_EXPORT void setCandidate(WebString);
+    BLINK_PLATFORM_EXPORT void setSdpMid(WebString);
+    BLINK_PLATFORM_EXPORT void setSdpMLineIndex(unsigned short);
 
 #if INSIDE_BLINK
     WebRTCICECandidate(WebString candidate, WebString sdpMid, unsigned short sdpMLineIndex)