| Index: third_party/WebKit/Source/web/WebCryptoNormalize.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebCryptoNormalize.cpp b/third_party/WebKit/Source/web/WebCryptoNormalize.cpp
|
| index 65ed74804b11e5dd74326ebf634a36d0a1a5b671..16eabee03df2b59ef1e9a6bf88bc33d2cf7f178b 100644
|
| --- a/third_party/WebKit/Source/web/WebCryptoNormalize.cpp
|
| +++ b/third_party/WebKit/Source/web/WebCryptoNormalize.cpp
|
| @@ -48,7 +48,7 @@ WebCryptoAlgorithm normalizeCryptoAlgorithm(
|
| v8::Isolate* isolate) {
|
| // FIXME: Avoid using NonThrowableExceptionState.
|
| NonThrowableExceptionState exceptionState;
|
| - Dictionary algorithmDictionary(algorithmObject, isolate, exceptionState);
|
| + Dictionary algorithmDictionary(isolate, algorithmObject, exceptionState);
|
| if (!algorithmDictionary.isUndefinedOrNull() &&
|
| !algorithmDictionary.isObject())
|
| return WebCryptoAlgorithm();
|
|
|