Chromium Code Reviews| Index: third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.h |
| diff --git a/third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.h b/third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.h |
| index 1f09d19c04d0e9d505d829ddbde1ea16936c6272..7696019ec4455b360504ac6620cf7022cdbcae4d 100644 |
| --- a/third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.h |
| +++ b/third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.h |
| @@ -11,6 +11,7 @@ |
| #ifndef GeneratedCodeHelper_h |
| #define GeneratedCodeHelper_h |
| +#include "bindings/core/v8/SerializedScriptValue.h" |
|
Yuki
2016/08/10 02:16:34
I'm not sure if it's possible or not, but could yo
lkawai
2016/08/10 05:28:30
Done.
|
| #include "core/CoreExport.h" |
| #include <v8.h> |
| @@ -18,6 +19,8 @@ namespace blink { |
| CORE_EXPORT void v8ConstructorAttributeGetter(v8::Local<v8::Name> propertyName, const v8::PropertyCallbackInfo<v8::Value>&); |
| +CORE_EXPORT v8::Local<v8::Value> v8Deserialize(v8::Isolate*, PassRefPtr<SerializedScriptValue>); |
|
haraken
2016/08/10 02:19:36
I'm getting confused about what functions you're p
Yuki
2016/08/10 02:30:16
For hand-written code, value->deserialize() is pre
peria
2016/08/10 02:31:42
The objective of CL is to avoid running needless d
Yuki
2016/08/10 02:37:32
Note that toV8() is ideally supposed to satisfy th
lkawai
2016/08/10 05:28:30
Acknowledged.
|
| + |
| } // namespace blink |
| #endif // GeneratedCodeHelper_h |