| Index: Source/web/WebCryptoNormalize.cpp
|
| diff --git a/Source/web/WebCryptoNormalize.cpp b/Source/web/WebCryptoNormalize.cpp
|
| index 54675322f9f71674f3aefaa62356e7cc5941855d..23479fd9ea49baf470fd3e5efbeb76403a8fbd48 100644
|
| --- a/Source/web/WebCryptoNormalize.cpp
|
| +++ b/Source/web/WebCryptoNormalize.cpp
|
| @@ -38,20 +38,20 @@
|
| #include "public/platform/WebString.h"
|
| #include <v8.h>
|
|
|
| -using namespace WebCore;
|
| +using namespace blink;
|
|
|
| namespace blink {
|
|
|
|
|
| WebCryptoAlgorithm normalizeCryptoAlgorithm(v8::Handle<v8::Object> algorithmObject, WebCryptoOperation operation, int* exceptionCode, WebString* errorDetails, v8::Isolate* isolate)
|
| {
|
| - WebCore::Dictionary algorithmDictionary(algorithmObject, isolate);
|
| + blink::Dictionary algorithmDictionary(algorithmObject, isolate);
|
| if (!algorithmDictionary.isUndefinedOrNull() && !algorithmDictionary.isObject())
|
| return WebCryptoAlgorithm();
|
| WebCryptoAlgorithm algorithm;
|
| - WebCore::AlgorithmError error;
|
| + blink::AlgorithmError error;
|
| if (!normalizeAlgorithm(algorithmDictionary, operation, algorithm, &error)) {
|
| - *exceptionCode = WebCore::webCryptoErrorToExceptionCode(error.errorType);
|
| + *exceptionCode = blink::webCryptoErrorToExceptionCode(error.errorType);
|
| *errorDetails = error.errorDetails;
|
| return WebCryptoAlgorithm();
|
| }
|
|
|