Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1125)

Unified Diff: Source/core/storage/StorageEvent.h

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ager feedback Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorStyleSheet.cpp ('k') | Source/heap/Visitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « Source/core/inspector/InspectorStyleSheet.cpp ('k') | Source/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698