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

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

Powered by Google App Engine
This is Rietveld 408576698