| Index: content/child/webcrypto/webcrypto_impl.cc
|
| diff --git a/content/child/webcrypto/webcrypto_impl.cc b/content/child/webcrypto/webcrypto_impl.cc
|
| index ad0877106a6226dbb6529a9a9cc8fbf2ac3644de..57bdde44568bdf50ec72b1617218c3b52664be86 100644
|
| --- a/content/child/webcrypto/webcrypto_impl.cc
|
| +++ b/content/child/webcrypto/webcrypto_impl.cc
|
| @@ -22,17 +22,8 @@ namespace {
|
| void CompleteWithError(const Status& status, blink::WebCryptoResult* result) {
|
| DCHECK(status.IsError());
|
|
|
| -#if defined(WEBCRYPTO_HAS_ERROR_TYPE)
|
| result->completeWithError(status.error_type(),
|
| blink::WebString::fromUTF8(status.error_details()));
|
| -#else
|
| - // TODO(eroman): Delete once Blink changes have rolled into Chromium.
|
| - if (!status.error_details().empty())
|
| - result->completeWithError(
|
| - blink::WebString::fromUTF8(status.error_details()));
|
| - else
|
| - result->completeWithError();
|
| -#endif
|
| }
|
|
|
| bool IsAlgorithmAsymmetric(const blink::WebCryptoAlgorithm& algorithm) {
|
|
|