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

Unified Diff: Source/core/frame/Screen.cpp

Issue 196023016: Oilpan: move Screen and its supplement to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: Source/core/frame/Screen.cpp
diff --git a/Source/core/frame/Screen.cpp b/Source/core/frame/Screen.cpp
index 269e6af44cd1bf29ff8354a2c468d91d9393187d..edc3186946e5eb70cdeb354c77c8c4c2d6bf97a5 100644
--- a/Source/core/frame/Screen.cpp
+++ b/Source/core/frame/Screen.cpp
@@ -132,4 +132,11 @@ ExecutionContext* Screen::executionContext() const
return m_frame->document();
}
+void Screen::trace(Visitor* visitor)
+{
+#if ENABLE(OILPAN)
haraken 2014/03/14 11:39:45 Is this flag needed?
zerny-chromium 2014/03/14 11:54:48 This is needed after a recent change because Suppl
sof 2014/03/14 12:01:31 Yes, we don't add a virtual trace() for the non-he
+ HeapSupplementable<Screen>::trace(visitor);
+#endif
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698