OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef MutationObserver_h | 31 #ifndef MutationObserver_h |
32 #define MutationObserver_h | 32 #define MutationObserver_h |
33 | 33 |
34 #include "bindings/core/v8/ScriptWrappable.h" | 34 #include "bindings/core/v8/ScriptWrappable.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
36 #include "wtf/HashSet.h" | 36 #include "wtf/HashSet.h" |
37 #include "wtf/PassOwnPtr.h" | |
38 #include "wtf/PassRefPtr.h" | |
39 #include "wtf/RefCounted.h" | |
40 #include "wtf/RefPtr.h" | |
41 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
42 | 38 |
43 namespace blink { | 39 namespace blink { |
44 | 40 |
45 class ExceptionState; | 41 class ExceptionState; |
46 class MutationCallback; | 42 class MutationCallback; |
47 class MutationObserver; | 43 class MutationObserver; |
48 class MutationObserverInit; | 44 class MutationObserverInit; |
49 class MutationObserverRegistration; | 45 class MutationObserverRegistration; |
50 class MutationRecord; | 46 class MutationRecord; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 104 |
109 Member<MutationCallback> m_callback; | 105 Member<MutationCallback> m_callback; |
110 MutationRecordVector m_records; | 106 MutationRecordVector m_records; |
111 MutationObserverRegistrationSet m_registrations; | 107 MutationObserverRegistrationSet m_registrations; |
112 unsigned m_priority; | 108 unsigned m_priority; |
113 }; | 109 }; |
114 | 110 |
115 } // namespace blink | 111 } // namespace blink |
116 | 112 |
117 #endif // MutationObserver_h | 113 #endif // MutationObserver_h |
OLD | NEW |