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

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

Powered by Google App Engine
This is Rietveld 408576698