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

Unified Diff: Source/core/dom/IncrementLoadEventDelayCount.h

Issue 313813002: Oilpan: Replace RefPtrs to Node and its subclasses in core/dom/ with Oilpan transtion types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
Index: Source/core/dom/IncrementLoadEventDelayCount.h
diff --git a/Source/core/dom/IncrementLoadEventDelayCount.h b/Source/core/dom/IncrementLoadEventDelayCount.h
index d588de22a6181a920dbe918b2c8f59de97c1ef8c..b90b5201ee2f595b8bbc1151deb61360bb778e3d 100644
--- a/Source/core/dom/IncrementLoadEventDelayCount.h
+++ b/Source/core/dom/IncrementLoadEventDelayCount.h
@@ -5,6 +5,7 @@
#ifndef IncrementLoadEventDelayCount_h
#define IncrementLoadEventDelayCount_h
+#include "platform/heap/Handle.h"
#include "wtf/Noncopyable.h"
#include "wtf/RefPtr.h"
@@ -25,7 +26,7 @@ public:
void documentChanged(Document& newDocument);
private:
- RefPtr<Document> m_document;
+ RefPtrWillBePersistent<Document> m_document;
};
}

Powered by Google App Engine
This is Rietveld 408576698