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..41d07942f7900c68bd4ce4341bc737be5377040b |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/dom/IntersectionObserverCallback.h |
@@ -0,0 +1,30 @@ |
+// 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" |
+#include "wtf/Vector.h" |
+ |
+namespace blink { |
+ |
+class ExecutionContext; |
+class IntersectionObserver; |
+class IntersectionObserverEntry; |
+ |
+class IntersectionObserverCallback : public NoBaseWillBeGarbageCollectedFinalized<IntersectionObserverCallback> { |
haraken
2015/11/16 00:41:35
You don't need to use WillBe types for newly intro
szager1
2015/11/19 19:15:38
Working on it.
|
+public: |
+ virtual ~IntersectionObserverCallback() { } |
+ |
+ virtual void handleEvent(WillBeHeapVector<RefPtrWillBeMember<IntersectionObserverEntry>>&, IntersectionObserver*) = 0; |
+ virtual ExecutionContext* executionContext() const = 0; |
+ |
+ DEFINE_INLINE_VIRTUAL_TRACE() { } |
+}; |
+ |
+} |
+ |
+#endif // IntersectionObserverCallback_h |