HomeSort by relevance Sort by last modified time
    Searched defs:DestructionObserver (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/message_loop/
message_loop.h 141 // A DestructionObserver is notified when the current MessageLoop is being
149 class BASE_EXPORT DestructionObserver {
154 virtual ~DestructionObserver();
157 // Add a DestructionObserver, which will start receiving notifications
159 void AddDestructionObserver(DestructionObserver* destruction_observer);
161 // Remove a DestructionObserver. It is safe to call this method while a
162 // DestructionObserver is receiving a notification callback.
163 void RemoveDestructionObserver(DestructionObserver* destruction_observer);
439 ObserverList<DestructionObserver> destruction_observers_;
message_loop.cc 75 MessageLoop::DestructionObserver::~DestructionObserver() {
206 DestructionObserver* destruction_observer) {
212 DestructionObserver* destruction_observer) {

Completed in 6815 milliseconds