| Index: public/platform/WebCryptoAlgorithm.h
|
| diff --git a/public/platform/WebCryptoAlgorithm.h b/public/platform/WebCryptoAlgorithm.h
|
| index 2d9b0dcd4c7a10682102aa558ecb99314e6f62ea..4454200446e78c4557c7c29c624b91599a5a18b1 100644
|
| --- a/public/platform/WebCryptoAlgorithm.h
|
| +++ b/public/platform/WebCryptoAlgorithm.h
|
| @@ -82,10 +82,13 @@ class WebCryptoAlgorithm {
|
| public:
|
| #if WEBKIT_IMPLEMENTATION
|
| WebCryptoAlgorithm() { }
|
| - WebCryptoAlgorithm(WebCryptoAlgorithmId, const char* name, PassOwnPtr<WebCryptoAlgorithmParams>);
|
| + WebCryptoAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoAlgorithmParams>);
|
| #endif
|
|
|
| - WEBKIT_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, const char* name, WebCryptoAlgorithmParams*);
|
| + // FIXME: delete this once no longer used
|
| + WEBKIT_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, const char*, WebCryptoAlgorithmParams*);
|
| +
|
| + WEBKIT_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoAlgorithmParams*);
|
|
|
| ~WebCryptoAlgorithm() { reset(); }
|
|
|
| @@ -97,7 +100,6 @@ public:
|
| }
|
|
|
| WEBKIT_EXPORT WebCryptoAlgorithmId id() const;
|
| - WEBKIT_EXPORT const char* name() const;
|
|
|
| WEBKIT_EXPORT WebCryptoAlgorithmParamsType paramsType() const;
|
|
|
|
|