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

Unified Diff: Source/bindings/v8/custom/V8AlgorithmCustom.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
Index: Source/bindings/v8/custom/V8AlgorithmCustom.cpp
diff --git a/Source/bindings/v8/custom/V8AlgorithmCustom.cpp b/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
index 9c501370a0d9e0f9c3941f2ae345fb97a95d5314..11d9395cf396eec3f4c0c699fdad092ed7546866 100644
--- a/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
+++ b/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
@@ -47,22 +47,22 @@ v8::Handle<v8::Object> wrap(Algorithm* impl, v8::Handle<v8::Object> creationCont
// Wrap as the more derived type.
switch (impl->type()) {
- case WebKit::WebCryptoAlgorithmParamsTypeNone:
+ case blink::WebCryptoAlgorithmParamsTypeNone:
return V8Algorithm::createWrapper(impl, creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeAesCbcParams:
+ case blink::WebCryptoAlgorithmParamsTypeAesCbcParams:
return wrap(static_cast<AesCbcParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeAesKeyGenParams:
+ case blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams:
return wrap(static_cast<AesKeyGenParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeHmacParams:
+ case blink::WebCryptoAlgorithmParamsTypeHmacParams:
return wrap(static_cast<HmacParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeHmacKeyParams:
+ case blink::WebCryptoAlgorithmParamsTypeHmacKeyParams:
return wrap(static_cast<HmacKeyParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeRsaSsaParams:
+ case blink::WebCryptoAlgorithmParamsTypeRsaSsaParams:
return wrap(static_cast<RsaSsaParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
+ case blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
return wrap(static_cast<RsaKeyGenParams*>(impl), creationContext, isolate);
- case WebKit::WebCryptoAlgorithmParamsTypeAesGcmParams:
- case WebKit::WebCryptoAlgorithmParamsTypeRsaOaepParams:
+ case blink::WebCryptoAlgorithmParamsTypeAesGcmParams:
+ case blink::WebCryptoAlgorithmParamsTypeRsaOaepParams:
// TODO
notImplemented();
break;
« no previous file with comments | « Source/bindings/v8/WorkerScriptController.cpp ('k') | Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698