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 20 matching lines...) Expand all Loading... |
31 #ifndef CustomElementProcessingStack_h | 31 #ifndef CustomElementProcessingStack_h |
32 #define CustomElementProcessingStack_h | 32 #define CustomElementProcessingStack_h |
33 | 33 |
34 #include "core/CoreExport.h" | 34 #include "core/CoreExport.h" |
35 #include "core/dom/custom/CustomElementCallbackQueue.h" | 35 #include "core/dom/custom/CustomElementCallbackQueue.h" |
36 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
37 | 37 |
38 namespace blink { | 38 namespace blink { |
39 | 39 |
40 class CORE_EXPORT CustomElementProcessingStack : public NoBaseWillBeGarbageColle
ctedFinalized<CustomElementProcessingStack> { | 40 class CORE_EXPORT CustomElementProcessingStack : public NoBaseWillBeGarbageColle
ctedFinalized<CustomElementProcessingStack> { |
| 41 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(CustomElementProcessingStack); |
41 WTF_MAKE_NONCOPYABLE(CustomElementProcessingStack); | 42 WTF_MAKE_NONCOPYABLE(CustomElementProcessingStack); |
42 public: | 43 public: |
43 // This is stack allocated in many DOM callbacks. Make it cheap. | 44 // This is stack allocated in many DOM callbacks. Make it cheap. |
44 class CallbackDeliveryScope { | 45 class CallbackDeliveryScope { |
| 46 STACK_ALLOCATED(); |
45 public: | 47 public: |
46 CallbackDeliveryScope() | 48 CallbackDeliveryScope() |
47 : m_savedElementQueueStart(s_elementQueueStart) | 49 : m_savedElementQueueStart(s_elementQueueStart) |
48 { | 50 { |
49 s_elementQueueStart = s_elementQueueEnd; | 51 s_elementQueueStart = s_elementQueueEnd; |
50 } | 52 } |
51 | 53 |
52 ~CallbackDeliveryScope() | 54 ~CallbackDeliveryScope() |
53 { | 55 { |
54 if (s_elementQueueStart != s_elementQueueEnd) | 56 if (s_elementQueueStart != s_elementQueueEnd) |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 // The processing stack, flattened. Element queues lower in the | 99 // The processing stack, flattened. Element queues lower in the |
98 // stack appear toward the head of the vector. The first element | 100 // stack appear toward the head of the vector. The first element |
99 // is a null sentinel value. | 101 // is a null sentinel value. |
100 static const size_t kNumSentinels = 1; | 102 static const size_t kNumSentinels = 1; |
101 WillBeHeapVector<RawPtrWillBeMember<CustomElementCallbackQueue>> m_flattened
ProcessingStack; | 103 WillBeHeapVector<RawPtrWillBeMember<CustomElementCallbackQueue>> m_flattened
ProcessingStack; |
102 }; | 104 }; |
103 | 105 |
104 } // namespace blink | 106 } // namespace blink |
105 | 107 |
106 #endif // CustomElementProcessingStack_h | 108 #endif // CustomElementProcessingStack_h |
OLD | NEW |