| Index: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
|
| diff --git a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
|
| index fd25cf7d8ac6236533a8772bf1f9dc47affd10e1..8cf95259b384f03c49453de4ea4d7a93a0b03171 100644
|
| --- a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
|
| +++ b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
|
| @@ -43,12 +43,12 @@ namespace blink {
|
|
|
| class DeprecatedStorageQuotaCallbacksImpl FINAL : public StorageQuotaCallbacks {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(PassOwnPtrWillBeRawPtr<StorageUsageCallback> success, PassOwnPtrWillBeRawPtr<StorageErrorCallback> error)
|
| + static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageUsageCallback* success, StorageErrorCallback* error)
|
| {
|
| return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(PassOwnPtrWillBeRawPtr<StorageQuotaCallback> success, PassOwnPtrWillBeRawPtr<StorageErrorCallback> error)
|
| + static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageQuotaCallback* success, StorageErrorCallback* error)
|
| {
|
| return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
|
| }
|
| @@ -61,12 +61,12 @@ public:
|
| virtual void didFail(WebStorageQuotaError) OVERRIDE;
|
|
|
| private:
|
| - DeprecatedStorageQuotaCallbacksImpl(PassOwnPtrWillBeRawPtr<StorageUsageCallback>, PassOwnPtrWillBeRawPtr<StorageErrorCallback>);
|
| - DeprecatedStorageQuotaCallbacksImpl(PassOwnPtrWillBeRawPtr<StorageQuotaCallback>, PassOwnPtrWillBeRawPtr<StorageErrorCallback>);
|
| + DeprecatedStorageQuotaCallbacksImpl(StorageUsageCallback*, StorageErrorCallback*);
|
| + DeprecatedStorageQuotaCallbacksImpl(StorageQuotaCallback*, StorageErrorCallback*);
|
|
|
| - OwnPtrWillBeMember<StorageUsageCallback> m_usageCallback;
|
| - OwnPtrWillBeMember<StorageQuotaCallback> m_quotaCallback;
|
| - OwnPtrWillBeMember<StorageErrorCallback> m_errorCallback;
|
| + PersistentWillBeMember<StorageUsageCallback> m_usageCallback;
|
| + PersistentWillBeMember<StorageQuotaCallback> m_quotaCallback;
|
| + PersistentWillBeMember<StorageErrorCallback> m_errorCallback;
|
| };
|
|
|
| } // namespace blink
|
|
|