| Index: Source/modules/quota/StorageQuotaClient.cpp
|
| diff --git a/Source/modules/quota/StorageQuotaClient.cpp b/Source/modules/quota/StorageQuotaClient.cpp
|
| index 60230cd617da1561bcb7fd21d1330321e9c876f6..37634c8dc8d2d290bf0c8af23543da12647c3fe3 100644
|
| --- a/Source/modules/quota/StorageQuotaClient.cpp
|
| +++ b/Source/modules/quota/StorageQuotaClient.cpp
|
| @@ -46,9 +46,9 @@ StorageQuotaClient* StorageQuotaClient::from(ExecutionContext* context)
|
| return static_cast<StorageQuotaClient*>(Supplement<Page>::from(toDocument(context)->page(), supplementName()));
|
| }
|
|
|
| -void provideStorageQuotaClientTo(Page* page, PassOwnPtr<StorageQuotaClient> client)
|
| +void provideStorageQuotaClientTo(Page& page, PassOwnPtr<StorageQuotaClient> client)
|
| {
|
| - page->provideSupplement(StorageQuotaClient::supplementName(), client);
|
| + page.provideSupplement(StorageQuotaClient::supplementName(), client);
|
| }
|
|
|
| } // namespace WebCore
|
|
|