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

Unified Diff: Source/modules/crypto/KeyPair.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/Key.cpp ('k') | Source/modules/crypto/KeyPair.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/KeyPair.h
diff --git a/Source/modules/crypto/KeyPair.h b/Source/modules/crypto/KeyPair.h
index ce20fd3c24b391ab74433f6bd17d4ed8293d9db7..7377e93e4b48ee99e0bd49f8f783383b161df52e 100644
--- a/Source/modules/crypto/KeyPair.h
+++ b/Source/modules/crypto/KeyPair.h
@@ -36,7 +36,7 @@
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
-namespace WebKit { class WebCryptoKey; }
+namespace blink { class WebCryptoKey; }
namespace WebCore {
@@ -44,7 +44,7 @@ class Key;
class KeyPair : public ScriptWrappable, public RefCounted<KeyPair> {
public:
- static PassRefPtr<KeyPair> create(const WebKit::WebCryptoKey& publicKey, const WebKit::WebCryptoKey& privateKey);
+ static PassRefPtr<KeyPair> create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey);
Key* publicKey() { return m_publicKey.get(); }
Key* privateKey() { return m_privateKey.get(); }
« no previous file with comments | « Source/modules/crypto/Key.cpp ('k') | Source/modules/crypto/KeyPair.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698