Index: Source/core/platform/mediastream/RTCConfiguration.h |
diff --git a/Source/core/platform/mediastream/RTCConfiguration.h b/Source/core/platform/mediastream/RTCConfiguration.h |
index ddb5adbdfae20b5efb6d41aa63596dd3304b8912..08cfd89ddc0b6b59c1f6c50dd5296cb526bbd14a 100644 |
--- a/Source/core/platform/mediastream/RTCConfiguration.h |
+++ b/Source/core/platform/mediastream/RTCConfiguration.h |
@@ -45,7 +45,6 @@ public: |
{ |
return adoptRef(new RTCIceServer(uri, username, credential)); |
} |
- virtual ~RTCIceServer() { } |
const KURL& uri() { return m_uri; } |
const String& username() { return m_username; } |
@@ -67,7 +66,6 @@ private: |
class RTCConfiguration : public RefCounted<RTCConfiguration> { |
public: |
static PassRefPtr<RTCConfiguration> create() { return adoptRef(new RTCConfiguration()); } |
- virtual ~RTCConfiguration() { } |
void appendServer(PassRefPtr<RTCIceServer> server) { m_servers.append(server); } |
size_t numberOfServers() { return m_servers.size(); } |