| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IntersectionObserver_h | 5 #ifndef IntersectionObserver_h |
| 6 #define IntersectionObserver_h | 6 #define IntersectionObserver_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
| 9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "core/dom/IntersectionObservation.h" | 10 #include "core/dom/IntersectionObservation.h" |
| 11 #include "core/dom/IntersectionObserverEntry.h" | 11 #include "core/dom/IntersectionObserverEntry.h" |
| 12 #include "platform/Length.h" | 12 #include "platform/Length.h" |
| 13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 14 #include "wtf/HashSet.h" | 14 #include "platform/wtf/HashSet.h" |
| 15 #include "wtf/Vector.h" | 15 #include "platform/wtf/Vector.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class Document; | 19 class Document; |
| 20 class Element; | 20 class Element; |
| 21 class ExceptionState; | 21 class ExceptionState; |
| 22 class IntersectionObserverCallback; | 22 class IntersectionObserverCallback; |
| 23 class IntersectionObserverInit; | 23 class IntersectionObserverInit; |
| 24 | 24 |
| 25 class CORE_EXPORT IntersectionObserver final | 25 class CORE_EXPORT IntersectionObserver final |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 Length top_margin_; | 99 Length top_margin_; |
| 100 Length right_margin_; | 100 Length right_margin_; |
| 101 Length bottom_margin_; | 101 Length bottom_margin_; |
| 102 Length left_margin_; | 102 Length left_margin_; |
| 103 unsigned root_is_implicit_ : 1; | 103 unsigned root_is_implicit_ : 1; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace blink | 106 } // namespace blink |
| 107 | 107 |
| 108 #endif // IntersectionObserver_h | 108 #endif // IntersectionObserver_h |
| OLD | NEW |