Index: Source/core/storage/StorageEvent.h |
diff --git a/Source/core/storage/StorageEvent.h b/Source/core/storage/StorageEvent.h |
index bebf9c611755502446ca60a6d5c3fff21bdca876..1acea933e053810363e05befb7ed18dbbc274583 100644 |
--- a/Source/core/storage/StorageEvent.h |
+++ b/Source/core/storage/StorageEvent.h |
@@ -35,8 +35,7 @@ namespace WebCore { |
class Storage; |
struct StorageEventInit : public EventInit { |
- // FIXME: oilpan: Replace this with STACK_ALLOCATED. |
- DISALLOW_ALLOCATION(); |
+ STACK_ALLOCATED(); |
public: |
StorageEventInit(); |
@@ -44,7 +43,7 @@ public: |
String oldValue; |
String newValue; |
String url; |
- RefPtrWillBeRawPtr<Storage> storageArea; |
+ RefPtrWillBeMember<Storage> storageArea; |
}; |
class StorageEvent FINAL : public Event { |