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

Unified Diff: Source/modules/crypto/AesCbcParams.h

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
« no previous file with comments | « Source/core/xml/XMLHttpRequest.cpp ('k') | Source/modules/crypto/AesCbcParams.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/AesCbcParams.h
diff --git a/Source/modules/crypto/AesCbcParams.h b/Source/modules/crypto/AesCbcParams.h
index b422adf11f34db9e0f42980cf2f3841e82a5d2ea..223ca2bd161dc42500ba7bb6013f9663e595c90f 100644
--- a/Source/modules/crypto/AesCbcParams.h
+++ b/Source/modules/crypto/AesCbcParams.h
@@ -38,12 +38,12 @@ namespace WebCore {
class AesCbcParams : public Algorithm {
public:
- static PassRefPtr<AesCbcParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
+ static PassRefPtr<AesCbcParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
Uint8Array* iv();
private:
- explicit AesCbcParams(const WebKit::WebCryptoAlgorithm&);
+ explicit AesCbcParams(const blink::WebCryptoAlgorithm&);
RefPtr<Uint8Array> m_iv;
};
« no previous file with comments | « Source/core/xml/XMLHttpRequest.cpp ('k') | Source/modules/crypto/AesCbcParams.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698