| Index: Source/modules/quota/StorageQuotaClient.cpp
|
| diff --git a/Source/modules/quota/StorageQuotaClient.cpp b/Source/modules/quota/StorageQuotaClient.cpp
|
| index 37634c8dc8d2d290bf0c8af23543da12647c3fe3..475be84d55d66f6261443cdba53abe7e0db124ee 100644
|
| --- a/Source/modules/quota/StorageQuotaClient.cpp
|
| +++ b/Source/modules/quota/StorageQuotaClient.cpp
|
| @@ -43,10 +43,10 @@ const char* StorageQuotaClient::supplementName()
|
|
|
| StorageQuotaClient* StorageQuotaClient::from(ExecutionContext* context)
|
| {
|
| - return static_cast<StorageQuotaClient*>(Supplement<Page>::from(toDocument(context)->page(), supplementName()));
|
| + return static_cast<StorageQuotaClient*>(WillBeHeapSupplement<Page>::from(toDocument(context)->page(), supplementName()));
|
| }
|
|
|
| -void provideStorageQuotaClientTo(Page& page, PassOwnPtr<StorageQuotaClient> client)
|
| +void provideStorageQuotaClientTo(Page& page, PassOwnPtrWillBeRawPtr<StorageQuotaClient> client)
|
| {
|
| page.provideSupplement(StorageQuotaClient::supplementName(), client);
|
| }
|
|
|