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 24 matching lines...) Expand all Loading... |
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" | 37 #include "wtf/PassOwnPtr.h" |
38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
40 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
41 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
42 | 42 |
43 namespace blink { | 43 namespace blink { |
44 | 44 |
45 class Dictionary; | |
46 class ExceptionState; | 45 class ExceptionState; |
47 class MutationCallback; | 46 class MutationCallback; |
48 class MutationObserver; | 47 class MutationObserver; |
49 class MutationObserverInit; | 48 class MutationObserverInit; |
50 class MutationObserverRegistration; | 49 class MutationObserverRegistration; |
51 class MutationRecord; | 50 class MutationRecord; |
52 class Node; | 51 class Node; |
53 | 52 |
54 typedef unsigned char MutationObserverOptions; | 53 typedef unsigned char MutationObserverOptions; |
55 typedef unsigned char MutationRecordDeliveryOptions; | 54 typedef unsigned char MutationRecordDeliveryOptions; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 106 |
108 OwnPtr<MutationCallback> m_callback; | 107 OwnPtr<MutationCallback> m_callback; |
109 MutationRecordVector m_records; | 108 MutationRecordVector m_records; |
110 MutationObserverRegistrationSet m_registrations; | 109 MutationObserverRegistrationSet m_registrations; |
111 unsigned m_priority; | 110 unsigned m_priority; |
112 }; | 111 }; |
113 | 112 |
114 } // namespace blink | 113 } // namespace blink |
115 | 114 |
116 #endif // MutationObserver_h | 115 #endif // MutationObserver_h |
OLD | NEW |