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

Unified Diff: Source/core/plugins/DOMMimeType.cpp

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 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/plugins/DOMMimeType.cpp
diff --git a/Source/core/plugins/DOMMimeType.cpp b/Source/core/plugins/DOMMimeType.cpp
index f8d4b316094f7e9759a6a72c42ba9d59deaf3c3d..f1bffe7b56962dd81ec3661bb8b8715818c8d5e4 100644
--- a/Source/core/plugins/DOMMimeType.cpp
+++ b/Source/core/plugins/DOMMimeType.cpp
@@ -38,6 +38,11 @@ DOMMimeType::~DOMMimeType()
{
}
+void DOMMimeType::trace(Visitor* visitor)
+{
+ FrameDestructionObserver::trace(visitor);
+}
+
const String &DOMMimeType::type() const
{
return mimeClassInfo().type;

Powered by Google App Engine
This is Rietveld 408576698