| Index: Source/modules/crypto/NormalizeAlgorithm.h
|
| diff --git a/Source/modules/crypto/NormalizeAlgorithm.h b/Source/modules/crypto/NormalizeAlgorithm.h
|
| index eb48788fe56c5577d23d949807d724216df1400e..ffad50aa4fb1acb5c6d025d39e0c9140925dde5d 100644
|
| --- a/Source/modules/crypto/NormalizeAlgorithm.h
|
| +++ b/Source/modules/crypto/NormalizeAlgorithm.h
|
| @@ -34,7 +34,7 @@
|
| #include "public/platform/WebCryptoAlgorithm.h"
|
| #include "wtf/Assertions.h"
|
|
|
| -namespace WebKit { class WebCryptoAlgorithm; }
|
| +namespace blink { class WebCryptoAlgorithm; }
|
|
|
| namespace WebCore {
|
|
|
| @@ -58,11 +58,11 @@ enum AlgorithmOperation {
|
|
|
| // Normalizes an algorithm identifier (dictionary) into a WebCryptoAlgorithm. If
|
| // normalization fails then returns false and sets the ExceptionState.
|
| -bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, WebKit::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
|
| +bool normalizeAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, ExceptionState&) WARN_UNUSED_RETURN;
|
|
|
| // Returns a null-terminated C-string literal. Caller can assume the pointer
|
| // will be valid for the program's entire runtime.
|
| -const char* algorithmIdToName(WebKit::WebCryptoAlgorithmId);
|
| +const char* algorithmIdToName(blink::WebCryptoAlgorithmId);
|
|
|
| } // namespace WebCore
|
|
|
|
|