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

Unified Diff: Source/core/accessibility/AXObjectCache.cpp

Issue 313023003: Oilpan: Replace RefPtrs to Document in core/{accessibility,animation,fetch} with Oilpan transition … (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/accessibility/AXMenuList.cpp ('k') | Source/core/animation/AnimationPlayerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXObjectCache.cpp
diff --git a/Source/core/accessibility/AXObjectCache.cpp b/Source/core/accessibility/AXObjectCache.cpp
index 19741771c362aaec0315be4e1ffbf9ae636079a2..98f6e29874d345f739cc50d2c13b3770dab06873 100644
--- a/Source/core/accessibility/AXObjectCache.cpp
+++ b/Source/core/accessibility/AXObjectCache.cpp
@@ -691,7 +691,7 @@ void AXObjectCache::childrenChanged(AXObject* obj)
void AXObjectCache::notificationPostTimerFired(Timer<AXObjectCache>*)
{
- RefPtr<Document> protectorForCacheOwner(m_document);
+ RefPtrWillBeRawPtr<Document> protectorForCacheOwner(m_document);
dmazzoni 2014/06/04 06:27:26 In this particular case, the RefPtr is purely ther
Mads Ager (chromium) 2014/06/04 06:30:13 Yes, exactly, this just have to go when we can tur
haraken 2014/06/04 06:31:50 You're right. We've discussed introducing RefPtrWi
zerny-chromium 2014/06/04 06:31:52 The RefPtrWillBeRaw<T> protect(foo) is sufficient.
m_notificationPostTimer.stop();
« no previous file with comments | « Source/core/accessibility/AXMenuList.cpp ('k') | Source/core/animation/AnimationPlayerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698