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

Unified Diff: Source/modules/crypto/Algorithm.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/AesKeyGenParams.cpp ('k') | Source/modules/crypto/Algorithm.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/Algorithm.h
diff --git a/Source/modules/crypto/Algorithm.h b/Source/modules/crypto/Algorithm.h
index 5a201b96ce51282e3a3ed882009617d175485d7c..779bf28ea0123b65c76045da85b6deae72244268 100644
--- a/Source/modules/crypto/Algorithm.h
+++ b/Source/modules/crypto/Algorithm.h
@@ -41,16 +41,16 @@ namespace WebCore {
class Algorithm : public ScriptWrappable, public RefCounted<Algorithm> {
public:
- static PassRefPtr<Algorithm> create(const WebKit::WebCryptoAlgorithm&);
+ static PassRefPtr<Algorithm> create(const blink::WebCryptoAlgorithm&);
String name();
- WebKit::WebCryptoAlgorithmParamsType type() const { return m_algorithm.paramsType(); }
+ blink::WebCryptoAlgorithmParamsType type() const { return m_algorithm.paramsType(); }
protected:
- explicit Algorithm(const WebKit::WebCryptoAlgorithm&);
+ explicit Algorithm(const blink::WebCryptoAlgorithm&);
- const WebKit::WebCryptoAlgorithm m_algorithm;
+ const blink::WebCryptoAlgorithm m_algorithm;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/crypto/AesKeyGenParams.cpp ('k') | Source/modules/crypto/Algorithm.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698