| Index: Source/core/platform/chromium/support/WebRTCSessionDescription.cpp
|
| diff --git a/Source/core/platform/chromium/support/WebRTCSessionDescription.cpp b/Source/core/platform/chromium/support/WebRTCSessionDescription.cpp
|
| index 8e2921342d870a2aa25e3c0eff28baedbd49bb1c..7bd88763049fc32eca0baccc02a3240680186316 100644
|
| --- a/Source/core/platform/chromium/support/WebRTCSessionDescription.cpp
|
| +++ b/Source/core/platform/chromium/support/WebRTCSessionDescription.cpp
|
| @@ -41,7 +41,6 @@ namespace WebKit {
|
| class WebRTCSessionDescriptionPrivate : public RefCounted<WebRTCSessionDescriptionPrivate> {
|
| public:
|
| static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp);
|
| - virtual ~WebRTCSessionDescriptionPrivate();
|
|
|
| WebString type() { return m_type; }
|
| void setType(const WebString& type) { m_type = type; }
|
| @@ -67,10 +66,6 @@ WebRTCSessionDescriptionPrivate::WebRTCSessionDescriptionPrivate(const WebString
|
| {
|
| }
|
|
|
| -WebRTCSessionDescriptionPrivate::~WebRTCSessionDescriptionPrivate()
|
| -{
|
| -}
|
| -
|
| void WebRTCSessionDescription::assign(const WebRTCSessionDescription& other)
|
| {
|
| m_private = other.m_private;
|
|
|