| Index: third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
|
| diff --git a/third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp b/third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
|
| index 12ba53f9956d271a6cd1d37603cc5fa91a9924f6..864e3349ef170c345d07aad15b32bf149ca6a08e 100644
|
| --- a/third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
|
| +++ b/third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.cpp
|
| @@ -44,9 +44,9 @@ const char* WorkerGlobalScopeCrypto::supplementName()
|
| return "WorkerGlobalScopeCrypto";
|
| }
|
|
|
| -WorkerGlobalScopeCrypto& WorkerGlobalScopeCrypto::from(WillBeHeapSupplementable<WorkerGlobalScope>& context)
|
| +WorkerGlobalScopeCrypto& WorkerGlobalScopeCrypto::from(HeapSupplementable<WorkerGlobalScope>& context)
|
| {
|
| - WorkerGlobalScopeCrypto* supplement = static_cast<WorkerGlobalScopeCrypto*>(WillBeHeapSupplement<WorkerGlobalScope>::from(context, supplementName()));
|
| + WorkerGlobalScopeCrypto* supplement = static_cast<WorkerGlobalScopeCrypto*>(HeapSupplement<WorkerGlobalScope>::from(context, supplementName()));
|
| if (!supplement) {
|
| supplement = new WorkerGlobalScopeCrypto();
|
| provideTo(context, supplementName(), adoptPtrWillBeNoop(supplement));
|
| @@ -54,7 +54,7 @@ WorkerGlobalScopeCrypto& WorkerGlobalScopeCrypto::from(WillBeHeapSupplementable<
|
| return *supplement;
|
| }
|
|
|
| -Crypto* WorkerGlobalScopeCrypto::crypto(WillBeHeapSupplementable<WorkerGlobalScope>& context)
|
| +Crypto* WorkerGlobalScopeCrypto::crypto(HeapSupplementable<WorkerGlobalScope>& context)
|
| {
|
| return WorkerGlobalScopeCrypto::from(context).crypto();
|
| }
|
| @@ -69,7 +69,7 @@ Crypto* WorkerGlobalScopeCrypto::crypto() const
|
| DEFINE_TRACE(WorkerGlobalScopeCrypto)
|
| {
|
| visitor->trace(m_crypto);
|
| - WillBeHeapSupplement<WorkerGlobalScope>::trace(visitor);
|
| + HeapSupplement<WorkerGlobalScope>::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|