Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / quota / NavigatorStorageQuota.h
index 2875d33..cc0ccef 100644 (file)
 #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;
@@ -58,9 +59,9 @@ private:
     explicit NavigatorStorageQuota(Frame*);
     static const char* supplementName();
 
-    mutable RefPtr<StorageQuota> m_storageQuota;
-    mutable RefPtr<DeprecatedStorageQuota> m_temporaryStorage;
-    mutable RefPtr<DeprecatedStorageQuota> m_persistentStorage;
+    mutable RefPtrWillBePersistent<StorageQuota> m_storageQuota;
+    mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_temporaryStorage;
+    mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_persistentStorage;
 };
 
 } // namespace WebCore