Index: third_party/WebKit/Source/core/dom/IntersectionObserverCallback.h |
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserverCallback.h b/third_party/WebKit/Source/core/dom/IntersectionObserverCallback.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c1b824a03422a3488fa469e42d3de4c65dcbcf88 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/dom/IntersectionObserverCallback.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef IntersectionObserverCallback_h |
+#define IntersectionObserverCallback_h |
+ |
+#include "platform/heap/Handle.h" |
+#include "wtf/RefPtr.h" |
sof
2015/12/30 13:09:33
not needed
szager1
2016/01/02 18:05:59
Done.
|
+#include "wtf/Vector.h" |
sof
2015/12/30 13:09:33
not needed.
szager1
2016/01/02 18:05:59
Done.
|
+ |
+namespace blink { |
+ |
+class ExecutionContext; |
+class IntersectionObserver; |
+class IntersectionObserverEntry; |
+ |
+class IntersectionObserverCallback : public GarbageCollectedFinalized<IntersectionObserverCallback> { |
+public: |
+ virtual void handleEvent(const HeapVector<Member<IntersectionObserverEntry>>&, IntersectionObserver&) = 0; |
+ virtual ExecutionContext* executionContext() const = 0; |
+ DEFINE_INLINE_VIRTUAL_TRACE() { } |
+}; |
+ |
+} |
+ |
+#endif // IntersectionObserverCallback_h |