Index: Source/modules/quota/WorkerNavigatorStorageQuota.h |
diff --git a/Source/modules/quota/WorkerNavigatorStorageQuota.h b/Source/modules/quota/WorkerNavigatorStorageQuota.h |
index adf955c86743c0f574c6eff9fbaec4354a4f0ca6..202f3ece7276c9d7e53e91807ead4cd15709d223 100644 |
--- a/Source/modules/quota/WorkerNavigatorStorageQuota.h |
+++ b/Source/modules/quota/WorkerNavigatorStorageQuota.h |
@@ -33,13 +33,12 @@ |
#include "core/frame/DOMWindowProperty.h" |
#include "core/workers/WorkerNavigator.h" |
+#include "heap/Handle.h" |
+#include "modules/quota/DeprecatedStorageQuota.h" |
#include "platform/Supplementable.h" |
namespace WebCore { |
-class DeprecatedStorageQuota; |
-class WorkerNavigator; |
- |
class WorkerNavigatorStorageQuota FINAL : public Supplement<WorkerNavigator> { |
public: |
virtual ~WorkerNavigatorStorageQuota(); |
@@ -54,8 +53,8 @@ private: |
explicit WorkerNavigatorStorageQuota(); |
static const char* supplementName(); |
- mutable RefPtr<DeprecatedStorageQuota> m_temporaryStorage; |
- mutable RefPtr<DeprecatedStorageQuota> m_persistentStorage; |
+ mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_temporaryStorage; |
+ mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_persistentStorage; |
}; |
} // namespace WebCore |