Index: third_party/WebKit/Source/bindings/core/v8/ActiveScriptWrappable.h |
diff --git a/third_party/WebKit/Source/bindings/core/v8/ActiveScriptWrappable.h b/third_party/WebKit/Source/bindings/core/v8/ActiveScriptWrappable.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..df3ac59448ffd5c1471c7884c584231e6b252737 |
--- /dev/null |
+++ b/third_party/WebKit/Source/bindings/core/v8/ActiveScriptWrappable.h |
@@ -0,0 +1,35 @@ |
+// Copyright 2016 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 ActiveScriptWrappable_h |
+#define ActiveScriptWrappable_h |
+ |
+#include "core/CoreExport.h" |
+#include "wtf/Noncopyable.h" |
+ |
+namespace blink { |
+ |
+class ScriptWrappable; |
+ |
+/** |
+ * Classes deriving from ActiveScriptWrappable will be registered in a |
+ * thread-specific list. They keep their wrappers and dependant objects alive |
+ * as long as they have pending activity. |
+ */ |
+class CORE_EXPORT ActiveScriptWrappable { |
+ WTF_MAKE_NONCOPYABLE(ActiveScriptWrappable); |
+public: |
+ explicit ActiveScriptWrappable(ScriptWrappable*); |
+ |
+ virtual bool hasPendingActivity() const = 0; |
+ |
+ ScriptWrappable* toScriptWrappable() const; |
+ |
+protected: |
+ virtual ~ActiveScriptWrappable(); |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // ActiveScriptWrappable_h |