| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef MutationObserver_h | 31 #ifndef MutationObserver_h |
| 32 #define MutationObserver_h | 32 #define MutationObserver_h |
| 33 | 33 |
| 34 #include "base/gtest_prod_util.h" | 34 #include "base/gtest_prod_util.h" |
| 35 #include "bindings/core/v8/ScriptWrappable.h" | 35 #include "bindings/core/v8/ScriptWrappable.h" |
| 36 #include "bindings/core/v8/TraceWrapperMember.h" | 36 #include "bindings/core/v8/TraceWrapperMember.h" |
| 37 #include "core/CoreExport.h" | 37 #include "core/CoreExport.h" |
| 38 #include "core/dom/ExecutionContext.h" | 38 #include "core/dom/ExecutionContext.h" |
| 39 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
| 40 #include "wtf/HashSet.h" | 40 #include "platform/wtf/HashSet.h" |
| 41 #include "wtf/Vector.h" | 41 #include "platform/wtf/Vector.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class Document; | 45 class Document; |
| 46 class ExceptionState; | 46 class ExceptionState; |
| 47 class HTMLSlotElement; | 47 class HTMLSlotElement; |
| 48 class MutationCallback; | 48 class MutationCallback; |
| 49 class MutationObserver; | 49 class MutationObserver; |
| 50 class MutationObserverInit; | 50 class MutationObserverInit; |
| 51 class MutationObserverRegistration; | 51 class MutationObserverRegistration; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 HeapVector<TraceWrapperMember<MutationRecord>> records_; | 123 HeapVector<TraceWrapperMember<MutationRecord>> records_; |
| 124 MutationObserverRegistrationSet registrations_; | 124 MutationObserverRegistrationSet registrations_; |
| 125 unsigned priority_; | 125 unsigned priority_; |
| 126 | 126 |
| 127 FRIEND_TEST_ALL_PREFIXES(MutationObserverTest, DisconnectCrash); | 127 FRIEND_TEST_ALL_PREFIXES(MutationObserverTest, DisconnectCrash); |
| 128 }; | 128 }; |
| 129 | 129 |
| 130 } // namespace blink | 130 } // namespace blink |
| 131 | 131 |
| 132 #endif // MutationObserver_h | 132 #endif // MutationObserver_h |
| OLD | NEW |