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

  /external/chromium/base/
message_loop.cc 116 MessageLoop::DestructionObserver::~DestructionObserver() {
192 FOR_EACH_OBSERVER(DestructionObserver, destruction_observers_,
213 DestructionObserver* destruction_observer) {
219 DestructionObserver* destruction_observer) {
message_loop.h 113 // A DestructionObserver is notified when the current MessageLoop is being
121 class BASE_API DestructionObserver {
126 virtual ~DestructionObserver();
129 // Add a DestructionObserver, which will start receiving notifications
131 void AddDestructionObserver(DestructionObserver* destruction_observer);
133 // Remove a DestructionObserver. It is safe to call this method while a
134 // DestructionObserver is receiving a notification callback.
135 void RemoveDestructionObserver(DestructionObserver* destruction_observer);
466 ObserverList<DestructionObserver> destruction_observers_;

Completed in 140 milliseconds