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

Unified Diff: Source/modules/crypto/HmacParams.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/HmacKeyParams.cpp ('k') | Source/modules/crypto/HmacParams.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/HmacParams.h
diff --git a/Source/modules/crypto/HmacParams.h b/Source/modules/crypto/HmacParams.h
index 45ddebd038b2ab3b7450d14a1bbdea7259b3694d..eb85d0915524ef66a1b8514ae9a7a6a941466158 100644
--- a/Source/modules/crypto/HmacParams.h
+++ b/Source/modules/crypto/HmacParams.h
@@ -38,12 +38,12 @@ namespace WebCore {
class HmacParams : public Algorithm {
public:
- static PassRefPtr<HmacParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); }
+ static PassRefPtr<HmacParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); }
Algorithm* hash();
private:
- explicit HmacParams(const WebKit::WebCryptoAlgorithm&);
+ explicit HmacParams(const blink::WebCryptoAlgorithm&);
RefPtr<Algorithm> m_hash;
};
« no previous file with comments | « Source/modules/crypto/HmacKeyParams.cpp ('k') | Source/modules/crypto/HmacParams.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698