| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2013 Google Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/dom/DocumentLifecycleNotifier.h" | 28 #include "core/dom/DocumentLifecycleNotifier.h" |
| 29 | 29 |
| 30 #include "core/dom/DocumentLifecycleObserver.h" | 30 #include "core/dom/DocumentLifecycleObserver.h" |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 void DocumentLifecycleNotifier::notifyDocumentWasDetached() | 34 void DocumentLifecycleNotifier::notifyDocumentWasDetached() |
| 35 { | 35 { |
| 36 TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll); | 36 TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll); |
| 37 for (DocumentLifecycleObserver* observer : m_observers) | 37 for (DocumentLifecycleObserver* observer : m_observers) { |
| 38 #if !ENABLE(OILPAN) |
| 39 if (!isObserverAlive(observer)) |
| 40 continue; |
| 41 #endif |
| 38 observer->documentWasDetached(); | 42 observer->documentWasDetached(); |
| 43 } |
| 39 } | 44 } |
| 40 | 45 |
| 41 #if !ENABLE(OILPAN) | 46 #if !ENABLE(OILPAN) |
| 42 void DocumentLifecycleNotifier::notifyDocumentWasDisposed() | 47 void DocumentLifecycleNotifier::notifyDocumentWasDisposed() |
| 43 { | 48 { |
| 44 TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll); | 49 TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll); |
| 45 for (DocumentLifecycleObserver* observer : m_observers) | 50 for (DocumentLifecycleObserver* observer : m_observers) { |
| 51 if (!isObserverAlive(observer)) |
| 52 continue; |
| 46 observer->documentWasDisposed(); | 53 observer->documentWasDisposed(); |
| 54 } |
| 47 } | 55 } |
| 48 #endif | 56 #endif |
| 49 | 57 |
| 50 } // namespace blink | 58 } // namespace blink |
| OLD | NEW |