Commit 069fccdf authored by Fabian Sommer's avatar Fabian Sommer Committed by Commit Bot

Fix comment typo in CertificateProviderService.

Replace SetCertificatesForExtension (which does not actually exist) with
SetCertificatesProvidedByExtension (which does).

Bug: 1067683
Change-Id: Idd0c25686f9f9228642ccb8891d3c1098b052ae4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2438449Reviewed-by: default avatarMaksim Ivanov <emaxx@chromium.org>
Commit-Queue: Fabian Sommer <fabiansommer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#811772}
parent a54f2137
......@@ -129,12 +129,12 @@ class CertificateProviderService : public KeyedService {
// Must be called when an extension replied to a previous certificate
// request, after the new certificates were registered with
// SetCertificatesForExtension(). For each request, it is expected that every
// registered extension replies exactly once. |cert_request_id| must refer to
// a previously broadcast certificate request. Returns false if the request id
// is unknown or it was called before with the same combination of request id
// and extension id. E.g. the request could have timed out before an extension
// replies.
// SetCertificatesProvidedByExtension(). For each request, it is expected that
// every registered extension replies exactly once. |cert_request_id| must
// refer to a previously broadcast certificate request. Returns false if the
// request id is unknown or it was called before with the same combination of
// request id and extension id. E.g. the request could have timed out before
// an extension replies.
bool SetExtensionCertificateReplyReceived(const std::string& extension_id,
int cert_request_id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment