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

Unified Diff: Source/core/frame/PlatformEventDispatcher.h

Issue 1301543002: [Oilpan] Remove a raw pointer to PlatformEventController class on Oilpan build (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
Index: Source/core/frame/PlatformEventDispatcher.h
diff --git a/Source/core/frame/PlatformEventDispatcher.h b/Source/core/frame/PlatformEventDispatcher.h
index 18f728cf205113a2617eb3eff23ec8db9848b2fd..462d4b1e509b80f83af9f700b1e9ff24ff040286 100644
--- a/Source/core/frame/PlatformEventDispatcher.h
+++ b/Source/core/frame/PlatformEventDispatcher.h
@@ -30,13 +30,9 @@ protected:
private:
void purgeControllers();
-#if ENABLE(OILPAN)
- void clearWeakMembers(Visitor*);
-#endif
-
- WillBeHeapVector<PlatformEventController*> m_controllers;
- bool m_needsPurge;
+ WillBeHeapHashSet<RawPtrWillBeWeakMember<PlatformEventController>> m_controllers;
bool m_isDispatching;
+ bool m_isListening;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/core/frame/PlatformEventDispatcher.cpp » ('j') | Source/core/frame/PlatformEventDispatcher.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698