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

Unified Diff: Source/modules/plugins/NavigatorPlugins.h

Issue 1107783002: Oilpan: have Navigator plugin objects on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/modules/plugins/MimeTypeArray.idl ('k') | Source/modules/plugins/Plugin.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/plugins/NavigatorPlugins.h
diff --git a/Source/modules/plugins/NavigatorPlugins.h b/Source/modules/plugins/NavigatorPlugins.h
index 4e1421b4bd42e5a836ba85e2ee86d276ec6137c1..635d09661f72301cf6bd5dcc2b347c5d86e1ecae 100644
--- a/Source/modules/plugins/NavigatorPlugins.h
+++ b/Source/modules/plugins/NavigatorPlugins.h
@@ -38,8 +38,8 @@ private:
DOMMimeTypeArray* mimeTypes(LocalFrame*) const;
bool javaEnabled(LocalFrame*) const;
- mutable RefPtrWillBeMember<DOMPluginArray> m_plugins;
- mutable RefPtrWillBeMember<DOMMimeTypeArray> m_mimeTypes;
+ mutable Member<DOMPluginArray> m_plugins;
+ mutable Member<DOMMimeTypeArray> m_mimeTypes;
};
} // namespace blink
« no previous file with comments | « Source/modules/plugins/MimeTypeArray.idl ('k') | Source/modules/plugins/Plugin.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698