| Index: include/v8.h
|
| ===================================================================
|
| --- include/v8.h (revision 12669)
|
| +++ include/v8.h (working copy)
|
| @@ -3722,6 +3722,13 @@
|
| Local<Value> GetData();
|
|
|
| /**
|
| + * Associate an opaque pointer with the context. This pointer can be used by
|
| + * the embedder to associate additional state with the context.
|
| + */
|
| + void SetEmbedderData(void* data);
|
| + void* GetEmbedderData();
|
| +
|
| + /**
|
| * Control whether code generation from strings is allowed. Calling
|
| * this method with false will disable 'eval' and the 'Function'
|
| * constructor for code running in this context. If 'eval' or the
|
|
|