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

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

Issue 1418113002: RTCPeerConnection.generateCertificate taking AlgorithmIdentifier and using WebCrypto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with master Created 5 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 | « third_party/WebKit/public/platform/WebCryptoUtil.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebRTCCertificateGenerator.h
diff --git a/third_party/WebKit/public/platform/WebRTCCertificateGenerator.h b/third_party/WebKit/public/platform/WebRTCCertificateGenerator.h
index e5aff7b47f69ffa7fc902e17f02643f51cca1ac0..aa10f885108c35122d5c905745e7309268bf04d8 100644
--- a/third_party/WebKit/public/platform/WebRTCCertificateGenerator.h
+++ b/third_party/WebKit/public/platform/WebRTCCertificateGenerator.h
@@ -51,10 +51,10 @@ public:
const WebURL& firstPartyForCookies,
WebCallbacks<WebRTCCertificate*, void>* observer) = 0;
- // Determines if the parameters should be considered valid for certificate generation.
+ // Determines if the parameters are supported by generateCertificate.
// For example, if the number of bits of some parameter is too small or too large we
// may want to reject it for security or performance reasons.
- virtual bool isValidKeyParams(const WebRTCKeyParams&) = 0;
+ virtual bool isSupportedKeyParams(const WebRTCKeyParams&) = 0;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/platform/WebCryptoUtil.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698