| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "platform/StorageQuotaCallbacks.h" | 36 #include "platform/StorageQuotaCallbacks.h" |
| 37 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
| 38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba
cks { | 43 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba
cks { |
| 44 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl); | 44 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl); |
| 45 public: | 45 public: |
| 46 static StorageQuotaCallbacksImpl* create(PassRefPtrWillBeRawPtr<ScriptPromis
eResolver> resolver) | 46 static StorageQuotaCallbacksImpl* create(ScriptPromiseResolver* resolver) |
| 47 { | 47 { |
| 48 return new StorageQuotaCallbacksImpl(resolver); | 48 return new StorageQuotaCallbacksImpl(resolver); |
| 49 } | 49 } |
| 50 | 50 |
| 51 ~StorageQuotaCallbacksImpl() override; | 51 ~StorageQuotaCallbacksImpl() override; |
| 52 | 52 |
| 53 void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned
long long quotaInBytes) override; | 53 void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned
long long quotaInBytes) override; |
| 54 void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long lon
g grantedQuotaInBytes) override; | 54 void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long lon
g grantedQuotaInBytes) override; |
| 55 void didFail(WebStorageQuotaError) override; | 55 void didFail(WebStorageQuotaError) override; |
| 56 | 56 |
| 57 DECLARE_VIRTUAL_TRACE(); | 57 DECLARE_VIRTUAL_TRACE(); |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 explicit StorageQuotaCallbacksImpl(PassRefPtrWillBeRawPtr<ScriptPromiseResol
ver>); | 60 explicit StorageQuotaCallbacksImpl(ScriptPromiseResolver*); |
| 61 | 61 |
| 62 RefPtrWillBeMember<ScriptPromiseResolver> m_resolver; | 62 Member<ScriptPromiseResolver> m_resolver; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // StorageQuotaCallbacksImpl_h | 67 #endif // StorageQuotaCallbacksImpl_h |
| OLD | NEW |