Index: Source/platform/CryptoResult.h |
diff --git a/Source/platform/CryptoResult.h b/Source/platform/CryptoResult.h |
index 5ff24a2ae062cc3a6f889573f76126936398df18..0f00c74624b2226eac4f93ea3eebaa64dfce8c8a 100644 |
--- a/Source/platform/CryptoResult.h |
+++ b/Source/platform/CryptoResult.h |
@@ -41,17 +41,17 @@ class CryptoResult : public ThreadSafeRefCounted<CryptoResult> { |
public: |
virtual ~CryptoResult() { } |
- virtual void completeWithError(blink::WebCryptoErrorType, const blink::WebString&) = 0; |
- virtual void completeWithBuffer(const blink::WebArrayBuffer&) = 0; |
+ virtual void completeWithError(WebCryptoErrorType, const WebString&) = 0; |
+ virtual void completeWithBuffer(const WebArrayBuffer&) = 0; |
virtual void completeWithJson(const char* utf8Data, unsigned length) = 0; |
virtual void completeWithBoolean(bool) = 0; |
- virtual void completeWithKey(const blink::WebCryptoKey&) = 0; |
- virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) = 0; |
+ virtual void completeWithKey(const WebCryptoKey&) = 0; |
+ virtual void completeWithKeyPair(const WebCryptoKey& publicKey, const WebCryptoKey& privateKey) = 0; |
virtual bool cancelled() const = 0; |
- blink::WebCryptoResult result() |
+ WebCryptoResult result() |
{ |
- return blink::WebCryptoResult(this); |
+ return WebCryptoResult(this); |
} |
}; |