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(); |