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

Unified Diff: Source/core/platform/chromium/support/WebSourceInfo.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 | « Source/core/platform/chromium/support/WebRTCSessionDescription.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/chromium/support/WebSourceInfo.cpp
diff --git a/Source/core/platform/chromium/support/WebSourceInfo.cpp b/Source/core/platform/chromium/support/WebSourceInfo.cpp
index 449e6d9eaf3d9e988a0f8dad023e56d12dd7355e..974474838eecd1140d5570cea652a23d91288e0c 100644
--- a/Source/core/platform/chromium/support/WebSourceInfo.cpp
+++ b/Source/core/platform/chromium/support/WebSourceInfo.cpp
@@ -36,7 +36,6 @@ namespace WebKit {
class WebSourceInfoPrivate : public RefCounted<WebSourceInfoPrivate> {
public:
static PassRefPtr<WebSourceInfoPrivate> create(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode);
- virtual ~WebSourceInfoPrivate();
const WebString& id() const { return m_id; }
WebSourceInfo::SourceKind kind() const { return m_kind; }
@@ -65,10 +64,6 @@ WebSourceInfoPrivate::WebSourceInfoPrivate(const WebString& id, WebSourceInfo::S
{
}
-WebSourceInfoPrivate::~WebSourceInfoPrivate()
-{
-}
-
void WebSourceInfo::assign(const WebSourceInfo& other)
{
m_private = other.m_private;
« no previous file with comments | « Source/core/platform/chromium/support/WebRTCSessionDescription.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698