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

Unified Diff: third_party/WebKit/Source/web/WebCryptoNormalize.cpp

Issue 2509713002: binding: Makes Dictionary throw an exception (constructor). (Closed)
Patch Set: Addressed review comments. Created 4 years, 1 month 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/Source/core/animation/KeyframeEffectTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698