| Index: Source/bindings/core/v8/V8Binding.h
|
| diff --git a/Source/bindings/core/v8/V8Binding.h b/Source/bindings/core/v8/V8Binding.h
|
| index 6e4b772d205aaba6b7fc31c45792855d8aa71d17..b5147cec9fb783c6b472af5a9dbd34f6b903575f 100644
|
| --- a/Source/bindings/core/v8/V8Binding.h
|
| +++ b/Source/bindings/core/v8/V8Binding.h
|
| @@ -45,6 +45,7 @@
|
| #include "bindings/core/v8/V8ThrowException.h"
|
| #include "bindings/core/v8/V8ValueCache.h"
|
| #include "core/CoreExport.h"
|
| +#include "platform/JSONValues.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/text/AtomicString.h"
|
| #include <v8.h>
|
| @@ -841,6 +842,12 @@ struct NativeValueTraits<Vector<T>> {
|
| }
|
| };
|
|
|
| +using JSONValuePtr = PassRefPtr<JSONValue>;
|
| +template <>
|
| +struct NativeValueTraits<JSONValuePtr> {
|
| + static JSONValuePtr nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&, int maxDepth = JSONValue::maxDepth);
|
| +};
|
| +
|
| CORE_EXPORT v8::Isolate* toIsolate(ExecutionContext*);
|
| v8::Isolate* toIsolate(LocalFrame*);
|
|
|
| @@ -902,8 +909,6 @@ void addHiddenValueToArray(v8::Isolate*, v8::Handle<v8::Object>, v8::Local<v8::V
|
| void removeHiddenValueFromArray(v8::Isolate*, v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex);
|
| CORE_EXPORT void moveEventListenerToNewWrapper(v8::Isolate*, v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex);
|
|
|
| -PassRefPtr<JSONValue> v8ToJSONValue(v8::Isolate*, v8::Handle<v8::Value>, int);
|
| -
|
| // Result values for platform object 'deleter' methods,
|
| // http://www.w3.org/TR/WebIDL/#delete
|
| enum DeleteResult {
|
|
|