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

Unified Diff: Source/core/css/MediaValuesCached.cpp

Issue 1260403002: Oilpan: Remove raw pointer to LocalFrame from MediaValuesDynamic (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/core/css/MediaValuesCached.h ('k') | Source/core/css/MediaValuesDynamic.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaValuesCached.cpp
diff --git a/Source/core/css/MediaValuesCached.cpp b/Source/core/css/MediaValuesCached.cpp
index b13634f5b9a2b383f79291f15bf1509704883994..02b5f1dec74d7aac20ae6b3440fee10f6e097ee8 100644
--- a/Source/core/css/MediaValuesCached.cpp
+++ b/Source/core/css/MediaValuesCached.cpp
@@ -12,29 +12,29 @@
namespace blink {
-PassRefPtr<MediaValues> MediaValuesCached::create()
+PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create()
{
- return adoptRef(new MediaValuesCached());
+ return adoptRefWillBeNoop(new MediaValuesCached());
}
-PassRefPtr<MediaValues> MediaValuesCached::create(MediaValuesCachedData& data)
+PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(MediaValuesCachedData& data)
{
- return adoptRef(new MediaValuesCached(data));
+ return adoptRefWillBeNoop(new MediaValuesCached(data));
}
-PassRefPtr<MediaValues> MediaValuesCached::create(Document& document)
+PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(Document& document)
{
return MediaValuesCached::create(frameFrom(document));
}
-PassRefPtr<MediaValues> MediaValuesCached::create(LocalFrame* frame)
+PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(LocalFrame* frame)
{
// FIXME - Added an assert here so we can better understand when a frame is present without its view().
ASSERT(!frame || frame->view());
if (!frame || !frame->view())
- return adoptRef(new MediaValuesCached());
+ return adoptRefWillBeNoop(new MediaValuesCached());
ASSERT(frame->document() && frame->document()->layoutView());
- return adoptRef(new MediaValuesCached(frame));
+ return adoptRefWillBeNoop(new MediaValuesCached(frame));
}
MediaValuesCached::MediaValuesCached()
@@ -72,9 +72,9 @@ MediaValuesCached::MediaValuesCached(const MediaValuesCachedData& data)
{
}
-PassRefPtr<MediaValues> MediaValuesCached::copy() const
+PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::copy() const
{
- return adoptRef(new MediaValuesCached(m_data));
+ return adoptRefWillBeNoop(new MediaValuesCached(m_data));
}
bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, int& result) const
@@ -89,7 +89,15 @@ bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType
bool MediaValuesCached::isSafeToSendToAnotherThread() const
{
+#if ENABLE(OILPAN)
+ // Oilpan objects are safe to send to another thread as long as the thread
+ // does not outlive the thread used for creation. MediaValues are
+ // allocated on the main thread and may be passed to the parser thread,
+ // so this should be safe.
+ return true;
+#else
return hasOneRef();
+#endif
}
int MediaValuesCached::viewportWidth() const
« no previous file with comments | « Source/core/css/MediaValuesCached.h ('k') | Source/core/css/MediaValuesDynamic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698