Index: third_party/WebKit/public/platform/WebRTCCertificate.h |
diff --git a/third_party/WebKit/public/platform/WebRTCCertificate.h b/third_party/WebKit/public/platform/WebRTCCertificate.h |
index e27b1d529033b55b38bd60a4be28607898a83d05..e8e4c2855b9b2605e11003430d97166261854bb1 100644 |
--- a/third_party/WebKit/public/platform/WebRTCCertificate.h |
+++ b/third_party/WebKit/public/platform/WebRTCCertificate.h |
@@ -27,19 +27,20 @@ class WebRTCCertificatePEM { |
WebString m_certificate; |
}; |
-// WebRTCCertificate is an interface defining what Blink needs to know about certificates, |
-// hiding Chromium and WebRTC layer implementation details. It is possible to create |
-// shallow copies of the WebRTCCertificate. When all copies are destroyed, the |
-// implementation specific data must be freed. WebRTCCertificate objects thus act as |
-// references to the reference counted internal data. |
+// WebRTCCertificate is an interface defining what Blink needs to know about |
+// certificates, hiding Chromium and WebRTC layer implementation details. It is |
+// possible to create shallow copies of the WebRTCCertificate. When all copies |
+// are destroyed, the implementation specific data must be freed. |
+// WebRTCCertificate objects thus act as references to the reference counted |
+// internal data. |
class WebRTCCertificate { |
public: |
WebRTCCertificate() = default; |
virtual ~WebRTCCertificate() = default; |
- // Copies the WebRTCCertificate object without copying the underlying implementation |
- // specific (WebRTC layer) certificate. When all copies are destroyed the underlying |
- // data is freed. |
+ // Copies the WebRTCCertificate object without copying the underlying |
+ // implementation specific (WebRTC layer) certificate. When all copies are |
+ // destroyed the underlying data is freed. |
virtual std::unique_ptr<WebRTCCertificate> shallowCopy() const = 0; |
// Returns the expiration time in ms relative to epoch, 1970-01-01T00:00:00Z. |