| Index: Source/modules/crypto/Crypto.h
|
| diff --git a/Source/modules/crypto/Crypto.h b/Source/modules/crypto/Crypto.h
|
| index 3e34ca1599864a5d9cd6592bb922ebc0b6272aeb..d4f5cda3ae92170a7f90b892691540722882ff60 100644
|
| --- a/Source/modules/crypto/Crypto.h
|
| +++ b/Source/modules/crypto/Crypto.h
|
| @@ -30,6 +30,7 @@
|
| #define Crypto_h
|
|
|
| #include "bindings/v8/ScriptWrappable.h"
|
| +#include "modules/crypto/SubtleCrypto.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefCounted.h"
|
| @@ -44,8 +45,12 @@ public:
|
|
|
| void getRandomValues(ArrayBufferView*, ExceptionCode&);
|
|
|
| + SubtleCrypto* subtle();
|
| +
|
| private:
|
| Crypto();
|
| +
|
| + RefPtr<SubtleCrypto> m_subtleCrypto;
|
| };
|
|
|
| }
|
|
|