Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / crypto / NormalizeAlgorithm.h
index 14efbbb..0cd9f86 100644 (file)
 #include "wtf/Assertions.h"
 #include "wtf/Forward.h"
 
-namespace WebCore {
+namespace blink {
 
 class Dictionary;
 
 struct AlgorithmError {
-    blink::WebCryptoErrorType errorType;
-    blink::WebString errorDetails;
+    WebCryptoErrorType errorType;
+    WebString errorDetails;
 };
 
 // Converts a javascript Dictionary to a WebCryptoAlgorithm object.
@@ -57,8 +57,8 @@ struct AlgorithmError {
 // a error type and a (non-localized) debug string.
 //
 // [1] http://www.w3.org/TR/WebCryptoAPI/#algorithm-normalizing-rules
-bool normalizeAlgorithm(const Dictionary&, blink::WebCryptoOperation, blink::WebCryptoAlgorithm&, AlgorithmError*) WARN_UNUSED_RETURN;
+bool normalizeAlgorithm(const Dictionary&, WebCryptoOperation, WebCryptoAlgorithm&, AlgorithmError*) WARN_UNUSED_RETURN;
 
-} // namespace WebCore
+} // namespace blink
 
 #endif