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

Unified Diff: Source/modules/crypto/Key.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/HmacParams.cpp ('k') | Source/modules/crypto/Key.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/Key.h
diff --git a/Source/modules/crypto/Key.h b/Source/modules/crypto/Key.h
index 403dbe271a52d37715871a2f853cd19313430b3c..aa6bad09ffb7d10b00bd65ece7dd254a97d4e154 100644
--- a/Source/modules/crypto/Key.h
+++ b/Source/modules/crypto/Key.h
@@ -46,7 +46,7 @@ class ExceptionState;
class Key : public ScriptWrappable, public RefCounted<Key> {
public:
- static PassRefPtr<Key> create(const WebKit::WebCryptoKey& key) { return adoptRef(new Key(key)); }
+ static PassRefPtr<Key> create(const blink::WebCryptoKey& key) { return adoptRef(new Key(key)); }
~Key();
@@ -55,17 +55,17 @@ public:
Algorithm* algorithm();
Vector<String> usages() const;
- const WebKit::WebCryptoKey& key() const { return m_key; }
+ const blink::WebCryptoKey& key() const { return m_key; }
- bool canBeUsedForAlgorithm(const WebKit::WebCryptoAlgorithm&, AlgorithmOperation, ExceptionState&) const;
+ bool canBeUsedForAlgorithm(const blink::WebCryptoAlgorithm&, AlgorithmOperation, ExceptionState&) const;
- static bool parseFormat(const String&, WebKit::WebCryptoKeyFormat&, ExceptionState&);
- static bool parseUsageMask(const Vector<String>&, WebKit::WebCryptoKeyUsageMask&, ExceptionState&);
+ static bool parseFormat(const String&, blink::WebCryptoKeyFormat&, ExceptionState&);
+ static bool parseUsageMask(const Vector<String>&, blink::WebCryptoKeyUsageMask&, ExceptionState&);
protected:
- explicit Key(const WebKit::WebCryptoKey&);
+ explicit Key(const blink::WebCryptoKey&);
- const WebKit::WebCryptoKey m_key;
+ const blink::WebCryptoKey m_key;
RefPtr<Algorithm> m_algorithm;
};
« no previous file with comments | « Source/modules/crypto/HmacParams.cpp ('k') | Source/modules/crypto/Key.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698