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

Unified Diff: Source/core/platform/mediastream/RTCConfiguration.h

Issue 47613002: Use FINAL macro for classes whose virtual destructor was removed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
Index: Source/core/platform/mediastream/RTCConfiguration.h
diff --git a/Source/core/platform/mediastream/RTCConfiguration.h b/Source/core/platform/mediastream/RTCConfiguration.h
index 08cfd89ddc0b6b59c1f6c50dd5296cb526bbd14a..94e38c3b98aea9477d4bf609cfee7287ec4b7c20 100644
--- a/Source/core/platform/mediastream/RTCConfiguration.h
+++ b/Source/core/platform/mediastream/RTCConfiguration.h
@@ -39,7 +39,7 @@
namespace WebCore {
-class RTCIceServer : public RefCounted<RTCIceServer> {
+class RTCIceServer FINAL : public RefCounted<RTCIceServer> {
public:
static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& username, const String& credential)
{
@@ -63,7 +63,7 @@ private:
String m_credential;
};
-class RTCConfiguration : public RefCounted<RTCConfiguration> {
+class RTCConfiguration FINAL : public RefCounted<RTCConfiguration> {
public:
static PassRefPtr<RTCConfiguration> create() { return adoptRef(new RTCConfiguration()); }
« no previous file with comments | « Source/core/platform/mediastream/MediaStreamDescriptor.h ('k') | Source/core/rendering/ImageQualityController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698