| Index: third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h b/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
|
| index a41ba2c3033e4326a6e5694f5255590fe4e78e7b..cb3fed423df35e670b8659c79b318c45d63c67e4 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ToV8ForCore.h
|
| @@ -8,35 +8,13 @@
|
| // ToV8() provides C++ -> V8 conversion. Note that ToV8() can return an empty
|
| // handle. Call sites must check IsEmpty() before using return value.
|
|
|
| -#include "bindings/core/v8/ScriptWrappable.h"
|
| #include "bindings/core/v8/ToV8.h"
|
| -#include "core/CoreExport.h"
|
| #include "core/dom/NotShared.h"
|
| #include "v8/include/v8.h"
|
|
|
| namespace blink {
|
|
|
| -class DOMWindow;
|
| class Dictionary;
|
| -class EventTarget;
|
| -class Node;
|
| -
|
| -inline v8::Local<v8::Value> ToV8(Node* impl,
|
| - v8::Local<v8::Object> creation_context,
|
| - v8::Isolate* isolate) {
|
| - return ToV8(ScriptWrappable::FromNode(impl), creation_context, isolate);
|
| -}
|
| -
|
| -// Special versions for DOMWindow and EventTarget
|
| -
|
| -CORE_EXPORT v8::Local<v8::Value> ToV8(DOMWindow*,
|
| - v8::Local<v8::Object> creation_context,
|
| - v8::Isolate*);
|
| -CORE_EXPORT v8::Local<v8::Value> ToV8(EventTarget*,
|
| - v8::Local<v8::Object> creation_context,
|
| - v8::Isolate*);
|
| -
|
| -// Dictionary
|
|
|
| inline v8::Local<v8::Value> ToV8(const Dictionary& value,
|
| v8::Local<v8::Object> creation_context,
|
|
|