| 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 static MicrotaskQueue& microtaskQueue() | 41 static MicrotaskQueue& microtaskQueue() |
| 42 { | 42 { |
| 43 DEFINE_STATIC_LOCAL(MicrotaskQueue, microtaskQueue, ()); | 43 DEFINE_STATIC_LOCAL(MicrotaskQueue, microtaskQueue, ()); |
| 44 return microtaskQueue; | 44 return microtaskQueue; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void Microtask::performCheckpoint() | 47 void Microtask::performCheckpoint() |
| 48 { | 48 { |
| 49 V8PerIsolateData* isolateData = V8PerIsolateData::current(); | 49 V8PerIsolateData* isolateData = V8PerIsolateData::current(); |
| 50 ASSERT(isolateData); | 50 ASSERT(isolateData); |
| 51 ASSERT(!isolateData->recursionLevel()); |
| 52 |
| 51 if (isolateData->performingMicrotaskCheckpoint()) | 53 if (isolateData->performingMicrotaskCheckpoint()) |
| 52 return; | 54 return; |
| 53 isolateData->setPerformingMicrotaskCheckpoint(true); | 55 isolateData->setPerformingMicrotaskCheckpoint(true); |
| 54 | 56 |
| 55 while (!microtaskQueue().isEmpty()) { | 57 while (!microtaskQueue().isEmpty()) { |
| 56 Vector<MicrotaskCallback> microtasks; | 58 Vector<MicrotaskCallback> microtasks; |
| 57 microtasks.swap(microtaskQueue()); | 59 microtasks.swap(microtaskQueue()); |
| 58 for (size_t i = 0; i < microtasks.size(); ++i) { | 60 for (size_t i = 0; i < microtasks.size(); ++i) { |
| 59 microtasks[i](); | 61 microtasks[i](); |
| 60 } | 62 } |
| 61 } | 63 } |
| 62 | 64 |
| 63 isolateData->setPerformingMicrotaskCheckpoint(false); | 65 isolateData->setPerformingMicrotaskCheckpoint(false); |
| 64 } | 66 } |
| 65 | 67 |
| 66 void Microtask::enqueueMicrotask(MicrotaskCallback callback) | 68 void Microtask::enqueueMicrotask(MicrotaskCallback callback) |
| 67 { | 69 { |
| 68 microtaskQueue().append(callback); | 70 microtaskQueue().append(callback); |
| 69 } | 71 } |
| 70 | 72 |
| 71 } // namespace WebCore | 73 } // namespace WebCore |
| OLD | NEW |