| Index: Source/modules/quota/StorageInfo.h
|
| diff --git a/Source/modules/quota/StorageInfo.h b/Source/modules/quota/StorageInfo.h
|
| index 279faf5e7b61b6d83be36fd73f0ed47fd718572f..8244f9f1be2e370c55bf41645543d0f365db00c7 100644
|
| --- a/Source/modules/quota/StorageInfo.h
|
| +++ b/Source/modules/quota/StorageInfo.h
|
| @@ -33,17 +33,14 @@
|
|
|
| #include "bindings/v8/ScriptWrappable.h"
|
| #include "platform/heap/Handle.h"
|
| -#include "wtf/PassRefPtr.h"
|
| -#include "wtf/RefCounted.h"
|
| -#include "wtf/RefPtr.h"
|
|
|
| namespace WebCore {
|
|
|
| -class StorageInfo FINAL : public RefCountedWillBeGarbageCollectedFinalized<StorageInfo>, public ScriptWrappable {
|
| +class StorageInfo FINAL : public GarbageCollectedFinalized<StorageInfo>, public ScriptWrappable {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<StorageInfo> create(unsigned long long usage, unsigned long long quota)
|
| + static StorageInfo* create(unsigned long long usage, unsigned long long quota)
|
| {
|
| - return adoptRefWillBeNoop(new StorageInfo(usage, quota));
|
| + return new StorageInfo(usage, quota);
|
| }
|
|
|
| unsigned long long usage() const { return m_usage; }
|
|
|