Commit 1a9f010a authored by Fabian Sommer's avatar Fabian Sommer Committed by Commit Bot

Fix typo RequestPin -> StopPinRequest

This change is a no-op since parameters for RequestPin and
StopPinRequest are identical.

Bug: 1067683
Change-Id: I1393746b492296ba9d0031b5ec1f9e9f22d1d72a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199351Reviewed-by: default avatarMaksim Ivanov <emaxx@chromium.org>
Commit-Queue: Fabian Sommer <fabiansommer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#770055}
parent ade9db92
...@@ -249,8 +249,8 @@ CertificateProviderStopPinRequestFunction:: ...@@ -249,8 +249,8 @@ CertificateProviderStopPinRequestFunction::
ExtensionFunction::ResponseAction ExtensionFunction::ResponseAction
CertificateProviderStopPinRequestFunction::Run() { CertificateProviderStopPinRequestFunction::Run() {
std::unique_ptr<api_cp::RequestPin::Params> params( std::unique_ptr<api_cp::StopPinRequest::Params> params(
api_cp::RequestPin::Params::Create(*args_)); api_cp::StopPinRequest::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params); EXTENSION_FUNCTION_VALIDATE(params);
// TODO(crbug.com/1046860): Remove logging after stabilizing the feature. // TODO(crbug.com/1046860): Remove logging after stabilizing the feature.
......
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