From 2616594045ebc02e094fa9428489bc0e0a69d5bb Mon Sep 17 00:00:00 2001 From: Benjamin Wright Date: Fri, 26 Oct 2018 15:04:32 -0700 Subject: [PATCH] Refactor: Make SSLCertChain a final class. Bug: webrtc:9860 Change-Id: I07378f676c9d278c66c39b71902f91f0f15bf715 Reviewed-on: https://webrtc-review.googlesource.com/c/107800 Commit-Queue: Benjamin Wright Reviewed-by: Karl Wiberg Cr-Commit-Position: refs/heads/master@{#25400} --- rtc_base/sslcertificate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtc_base/sslcertificate.h b/rtc_base/sslcertificate.h index 59567c93a6..eb81c209e4 100644 --- a/rtc_base/sslcertificate.h +++ b/rtc_base/sslcertificate.h @@ -90,7 +90,7 @@ class SSLCertificate { // SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves // primarily to ensure proper memory management (especially deletion) of the // SSLCertificate pointers. -class SSLCertChain { +class SSLCertChain final { public: explicit SSLCertChain(std::unique_ptr single_cert); explicit SSLCertChain(std::vector> certs);