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

Unified Diff: Source/core/platform/chromium/support/WebRTCICECandidate.cpp

Issue 43773003: Remove virtual destructors for several platform support classes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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 | Source/core/platform/chromium/support/WebRTCSessionDescription.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/chromium/support/WebRTCICECandidate.cpp
diff --git a/Source/core/platform/chromium/support/WebRTCICECandidate.cpp b/Source/core/platform/chromium/support/WebRTCICECandidate.cpp
index 755e94106969aaa417e166334f884cb96e68ce19..477d9fc20dcac5958ffa83824de47b3a7a6cfa3d 100644
--- a/Source/core/platform/chromium/support/WebRTCICECandidate.cpp
+++ b/Source/core/platform/chromium/support/WebRTCICECandidate.cpp
@@ -44,7 +44,6 @@ public:
{
return adoptRef(new WebRTCICECandidatePrivate(candidate, sdpMid, sdpMLineIndex));
}
- virtual ~WebRTCICECandidatePrivate();
const WebString& candidate() const { return m_candidate; }
const WebString& sdpMid() const { return m_sdpMid; }
@@ -65,10 +64,6 @@ WebRTCICECandidatePrivate::WebRTCICECandidatePrivate(const WebString& candidate,
{
}
-WebRTCICECandidatePrivate::~WebRTCICECandidatePrivate()
-{
-}
-
void WebRTCICECandidate::assign(const WebRTCICECandidate& other)
{
m_private = other.m_private;
« no previous file with comments | « no previous file | Source/core/platform/chromium/support/WebRTCSessionDescription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698