| Index: Source/modules/crypto/DOMWindowCrypto.h
|
| diff --git a/Source/modules/crypto/DOMWindowCrypto.h b/Source/modules/crypto/DOMWindowCrypto.h
|
| index bccf4d2713114e5c42b3804f978db624703c66f8..fc155c92d9892fa764fc8cd39630133bf61d034d 100644
|
| --- a/Source/modules/crypto/DOMWindowCrypto.h
|
| +++ b/Source/modules/crypto/DOMWindowCrypto.h
|
| @@ -38,20 +38,20 @@
|
| namespace WebCore {
|
|
|
| class Crypto;
|
| -class DOMWindow;
|
| +class LocalDOMWindow;
|
|
|
| -class DOMWindowCrypto FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowCrypto>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty {
|
| +class DOMWindowCrypto FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowCrypto>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowCrypto);
|
| public:
|
| virtual ~DOMWindowCrypto();
|
| - static DOMWindowCrypto& from(DOMWindow&);
|
| - static Crypto* crypto(DOMWindow&);
|
| + static DOMWindowCrypto& from(LocalDOMWindow&);
|
| + static Crypto* crypto(LocalDOMWindow&);
|
| Crypto* crypto() const;
|
|
|
| void trace(Visitor*);
|
|
|
| private:
|
| - explicit DOMWindowCrypto(DOMWindow&);
|
| + explicit DOMWindowCrypto(LocalDOMWindow&);
|
| static const char* supplementName();
|
|
|
| mutable PersistentWillBeMember<Crypto> m_crypto;
|
|
|