Index: Source/modules/quota/NavigatorStorageQuota.h |
diff --git a/Source/modules/quota/NavigatorStorageQuota.h b/Source/modules/quota/NavigatorStorageQuota.h |
index cc0ccefcdbedb9720601fb5b875fb3bf08097d1a..2875d33127fd0ecbc8e9d1cbeeeed3d00e349cb8 100644 |
--- a/Source/modules/quota/NavigatorStorageQuota.h |
+++ b/Source/modules/quota/NavigatorStorageQuota.h |
@@ -32,12 +32,11 @@ |
#define NavigatorStorageQuota_h |
#include "core/frame/DOMWindowProperty.h" |
-#include "heap/Handle.h" |
-#include "modules/quota/DeprecatedStorageQuota.h" |
#include "platform/Supplementable.h" |
namespace WebCore { |
+class DeprecatedStorageQuota; |
class Frame; |
class Navigator; |
class StorageQuota; |
@@ -59,9 +58,9 @@ |
explicit NavigatorStorageQuota(Frame*); |
static const char* supplementName(); |
- mutable RefPtrWillBePersistent<StorageQuota> m_storageQuota; |
- mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_temporaryStorage; |
- mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_persistentStorage; |
+ mutable RefPtr<StorageQuota> m_storageQuota; |
+ mutable RefPtr<DeprecatedStorageQuota> m_temporaryStorage; |
+ mutable RefPtr<DeprecatedStorageQuota> m_persistentStorage; |
}; |
} // namespace WebCore |