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

Unified Diff: Source/modules/crypto/RsaKeyGenParams.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/modules/crypto/NormalizeAlgorithm.cpp ('k') | Source/modules/crypto/RsaKeyGenParams.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/RsaKeyGenParams.h
diff --git a/Source/modules/crypto/RsaKeyGenParams.h b/Source/modules/crypto/RsaKeyGenParams.h
index 016e5aaa007ff59554fce30ea3611521f0dfc041..7a44705fc5b1836565973c97dda093e7ffdf0c59 100644
--- a/Source/modules/crypto/RsaKeyGenParams.h
+++ b/Source/modules/crypto/RsaKeyGenParams.h
@@ -39,13 +39,13 @@ namespace WebCore {
class RsaKeyGenParams : public Algorithm {
public:
- static PassRefPtr<RsaKeyGenParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
+ static PassRefPtr<RsaKeyGenParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
unsigned modulusLength() const;
Uint8Array* publicExponent();
private:
- explicit RsaKeyGenParams(const WebKit::WebCryptoAlgorithm&);
+ explicit RsaKeyGenParams(const blink::WebCryptoAlgorithm&);
RefPtr<Uint8Array> m_publicExponent;
};
« no previous file with comments | « Source/modules/crypto/NormalizeAlgorithm.cpp ('k') | Source/modules/crypto/RsaKeyGenParams.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698