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

Unified Diff: third_party/WebKit/public/platform/WebRTCCertificate.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: nit Created 4 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: 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.

Powered by Google App Engine
This is Rietveld 408576698