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

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

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.h
diff --git a/Source/core/plugins/DOMMimeType.h b/Source/core/plugins/DOMMimeType.h
index 78518a279a8c482b0410c909223a141d9bfaa9f5..d8b2a7ba3db8c611eea4cf2d2edd7292eb578566 100644
--- a/Source/core/plugins/DOMMimeType.h
+++ b/Source/core/plugins/DOMMimeType.h
@@ -35,6 +35,7 @@ class DOMPlugin;
class LocalFrame;
class DOMMimeType FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMMimeType>, public ScriptWrappable, public FrameDestructionObserver {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMMimeType);
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index)
@@ -48,7 +49,7 @@ public:
const String& description() const;
PassRefPtrWillBeRawPtr<DOMPlugin> enabledPlugin() const;
- void trace(Visitor*) { }
+ virtual void trace(Visitor*) OVERRIDE;
private:
const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_index]; }

Powered by Google App Engine
This is Rietveld 408576698