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

Unified Diff: Source/modules/plugins/DOMPluginArray.cpp

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/DOMPluginArray.h ('k') | Source/modules/plugins/MimeType.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/plugins/DOMPluginArray.cpp
diff --git a/Source/modules/plugins/DOMPluginArray.cpp b/Source/modules/plugins/DOMPluginArray.cpp
index 0488b72f7d64c640ef1b681ab11f9f0549e305e9..3470737a7d9907d76af73e8595a39c3431badb18 100644
--- a/Source/modules/plugins/DOMPluginArray.cpp
+++ b/Source/modules/plugins/DOMPluginArray.cpp
@@ -46,7 +46,7 @@ unsigned DOMPluginArray::length() const
return data->plugins().size();
}
-PassRefPtrWillBeRawPtr<DOMPlugin> DOMPluginArray::item(unsigned index)
+DOMPlugin* DOMPluginArray::item(unsigned index)
{
PluginData* data = pluginData();
if (!data)
@@ -57,7 +57,7 @@ PassRefPtrWillBeRawPtr<DOMPlugin> DOMPluginArray::item(unsigned index)
return DOMPlugin::create(data, m_frame, index);
}
-PassRefPtrWillBeRawPtr<DOMPlugin> DOMPluginArray::namedItem(const AtomicString& propertyName)
+DOMPlugin* DOMPluginArray::namedItem(const AtomicString& propertyName)
{
PluginData* data = pluginData();
if (!data)
« no previous file with comments | « Source/modules/plugins/DOMPluginArray.h ('k') | Source/modules/plugins/MimeType.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698