OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple 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 30 matching lines...) Expand all Loading... | |
41 } | 41 } |
42 | 42 |
43 ActiveDOMObject::~ActiveDOMObject() | 43 ActiveDOMObject::~ActiveDOMObject() |
44 { | 44 { |
45 // ActiveDOMObject may be inherited by a sub-class whose life-cycle | 45 // ActiveDOMObject may be inherited by a sub-class whose life-cycle |
46 // exceeds that of the associated ExecutionContext. In those cases, | 46 // exceeds that of the associated ExecutionContext. In those cases, |
47 // m_executionContext would/should have been nullified by | 47 // m_executionContext would/should have been nullified by |
48 // ContextLifecycleObserver::contextDestroyed() (which we implement / | 48 // ContextLifecycleObserver::contextDestroyed() (which we implement / |
49 // inherit). Hence, we should ensure that this is not 0 before use it | 49 // inherit). Hence, we should ensure that this is not 0 before use it |
50 // here. | 50 // here. |
51 if (!executionContext()) | 51 if (!executionContext()) |
haraken
2015/03/16 23:44:22
Is it safe to touch executionContext() here?
sof
2015/03/17 06:24:06
We've deemed previously that null checking a (Weak
haraken
2015/03/17 08:29:36
Haven't we ended up with the point that it is unsa
sof
2015/03/17 08:34:42
It wouldn't be null at step 4, so the check would
haraken
2015/03/17 08:36:22
Yes, it wouldn't be null. So you'll call execution
| |
52 return; | 52 return; |
53 | 53 |
54 ASSERT(m_suspendIfNeededCalled); | 54 ASSERT(m_suspendIfNeededCalled); |
55 #if !ENABLE(OILPAN) | |
sof
2015/03/16 15:44:34
Is this assert worth carrying over to Oilpan? I'm
haraken
2015/03/16 23:44:22
Agreed.
| |
55 ASSERT(executionContext()->isContextThread()); | 56 ASSERT(executionContext()->isContextThread()); |
57 #endif | |
56 } | 58 } |
57 | 59 |
58 void ActiveDOMObject::suspendIfNeeded() | 60 void ActiveDOMObject::suspendIfNeeded() |
59 { | 61 { |
60 #if ENABLE(ASSERT) | 62 #if ENABLE(ASSERT) |
61 ASSERT(!m_suspendIfNeededCalled); | 63 ASSERT(!m_suspendIfNeededCalled); |
62 m_suspendIfNeededCalled = true; | 64 m_suspendIfNeededCalled = true; |
63 #endif | 65 #endif |
64 if (ExecutionContext* context = executionContext()) | 66 if (ExecutionContext* context = executionContext()) |
65 context->suspendActiveDOMObjectIfNeeded(this); | 67 context->suspendActiveDOMObjectIfNeeded(this); |
(...skipping 27 matching lines...) Expand all Loading... | |
93 | 95 |
94 if (context->activeDOMObjectsAreSuspended()) { | 96 if (context->activeDOMObjectsAreSuspended()) { |
95 suspend(); | 97 suspend(); |
96 return; | 98 return; |
97 } | 99 } |
98 | 100 |
99 resume(); | 101 resume(); |
100 } | 102 } |
101 | 103 |
102 } // namespace blink | 104 } // namespace blink |
OLD | NEW |